Timothy Schenk
82e5cce676
All checks were successful
Test if Server can be built / build-server (push) Successful in 25s
10 lines
260 B
C#
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; }
|
|
}
|