Java CI / build (push) Successful in 1m56s
Signed-off-by: Dmitrii <computer@yawaflua.tech> Took 4 hours 25 minutes
16 lines
465 B
C#
16 lines
465 B
C#
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<string> roles { get; set; }
|
|
public ICity city { get; set; }
|
|
public List<IUserCard> cards { get; set; }
|
|
public DateTime createdAt { get; set; }
|
|
}
|