continuity/Server/DB/Documents/Character.cs

19 lines
607 B
C#
Raw Normal View History

2023-10-12 09:15:34 +02:00
namespace Server.DB.Documents;
2023-08-14 22:30:35 +02:00
public class Character
{
2023-08-14 23:05:53 +02:00
public byte ServerId { get; set; }
2023-08-14 22:30:35 +02:00
public Guid AccountId { get; set; }
2023-10-12 09:15:34 +02:00
public Account Account { get; set; }
2023-08-14 22:30:35 +02:00
public Guid Id { get; set; }
public ushort MapId { get; set; }
public string Name { get; set; }
2023-08-14 23:05:53 +02:00
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; }
2023-11-08 15:33:04 +01:00
public ICollection<InventoryItem> InventoryItems { get; set; }
2023-08-14 22:30:35 +02:00
}