Interface ICharacterEntity
Interface for character entities.
Inherited Members
Namespace: Fibula.Data.Entities.Contracts.Abstractions
Assembly: Fibula.Data.Entities.Contracts.dll
Syntax
public interface ICharacterEntity : IIdentifiableEntity, IEntityProperties
| Improve this Doc View SourceAccountId
Gets the id of the account to which this character belongs to.
Declaration
string AccountId { get; }Property Value
| Type | Description | 
|---|---|
| System.String | 
Creation
Gets the character's creation date and time.
Declaration
DateTimeOffset Creation { get; }Property Value
| Type | Description | 
|---|---|
| System.DateTimeOffset | 
Gender
Gets the character's gender.
Declaration
byte Gender { get; }Property Value
| Type | Description | 
|---|---|
| System.Byte | 
IsOnline
Gets a value indicating whether this character is currently online.
Declaration
bool IsOnline { get; }Property Value
| Type | Description | 
|---|---|
| System.Boolean | 
LastLogin
Gets the character's last login date and time.
Declaration
DateTimeOffset? LastLogin { get; }Property Value
| Type | Description | 
|---|---|
| System.Nullable<System.DateTimeOffset> | 
Name
Gets the name of the character.
Declaration
string Name { get; }Property Value
| Type | Description | 
|---|---|
| System.String | 
Vocation
Gets the character's vocation.
Declaration
string Vocation { get; }Property Value
| Type | Description | 
|---|---|
| System.String | 
World
Gets the world where the character exists.
Declaration
string World { get; }Property Value
| Type | Description | 
|---|---|
| System.String |