continuity/Server/DB/Documents/Character.cs

13 lines
316 B
C#
Raw Normal View History

2023-08-14 22:30:35 +02:00
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; }
}