13 lines
316 B
C#
13 lines
316 B
C#
|
namespace Server.DB.Documents;
|
|||
|
|
|||
|
using Microsoft.EntityFrameworkCore.Metadata.Internal;
|
|||
|
|
|||
|
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; }
|
|||
|
}
|