continuity/Server/DB/Documents/Character.cs
Timothy Schenk 1455bdd75a
All checks were successful
Test if Server can be built / build-server (push) Successful in 22s
chore: apply dotnet format
2023-10-12 09:15:34 +02:00

17 lines
540 B
C#

namespace Server.DB.Documents;
public class Character
{
public byte ServerId { get; set; }
public Guid AccountId { get; set; }
public Account Account { get; set; }
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; }
}