Timothy Schenk
21c9d925f3
All checks were successful
Test if Server can be built / build-server (push) Successful in 21s
19 lines
572 B
C#
19 lines
572 B
C#
namespace Server.DB.Documents;
|
|
|
|
using NpgsqlTypes;
|
|
|
|
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; }
|
|
}
|