using SPWorldsApi.Types.Interfaces; namespace SpMega.Backend.Persistent.Models.DTO; public class UserAccountDTO : IUserAccount { public string id { get; set; } public string username { get; set; } public string minecraftUUID { get; set; } public string status { get; set; } public List roles { get; set; } public ICity city { get; set; } public List cards { get; set; } public DateTime createdAt { get; set; } }