continuity/Server/DB/Documents/Character.cs

20 lines
572 B
C#
Raw Normal View History

2023-08-14 20:30:35 +00:00
namespace Server.DB.Documents;
2023-08-14 21:05:53 +00:00
using NpgsqlTypes;
2023-08-14 20:30:35 +00:00
public class Character
{
2023-08-14 21:05:53 +00:00
public byte ServerId { get; set; }
2023-08-14 20:30:35 +00:00
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; }
2023-08-14 21:05:53 +00: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-08-14 20:30:35 +00:00
}