continuity/Server/DB/Documents/Character.cs

17 lines
552 B
C#

namespace Server.DB.Documents;
public class Character
{
public byte ServerId { get; set; }
public Guid AccountId { get; set; }
public Account Account { get; set; } = null!;
public Guid Id { get; set; }
public ushort MapId { get; set; }
public string Name { get; set; }
public short LastXCoordinate { get; set; }
public short LastYCoordinate { get; set; }
public PvPLevel PvPLevel { get; set; }
public Gender Gender { get; set; }
public long Experience { get; set; }
public byte Level { get; set; }
}