continuity/Server/DB/Documents/Character.cs
Timothy Schenk 82e5cce676
All checks were successful
Test if Server can be built / build-server (push) Successful in 25s
chore: reformat & cleanup
2023-08-14 22:54:22 +02:00

10 lines
260 B
C#

namespace Server.DB.Documents;
public class Character
{
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; }
}