add admin related things

This commit is contained in:
Stanley Dimant 2022-06-30 01:53:28 +02:00
parent dd1a6e910e
commit 3e00bc4efd
14 changed files with 651 additions and 6 deletions

View file

@ -6,5 +6,6 @@ namespace MareSynchronosServer.Models
{
[Key]
public string CharacterIdentification { get; set; }
public string Reason { get; set; }
}
}

View file

@ -12,6 +12,8 @@ namespace MareSynchronosServer.Models
[Timestamp]
public byte[] Timestamp { get; set; }
public bool IsModerator { get; set; } = false;
public bool IsAdmin { get; set; } = false;
}
}