Initial
This commit is contained in:
13
MareSynchronosServer/MareSynchronosShared/Models/Banned.cs
Normal file
13
MareSynchronosServer/MareSynchronosShared/Models/Banned.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace MareSynchronosShared.Models;
|
||||
|
||||
public class Banned
|
||||
{
|
||||
[Key]
|
||||
[MaxLength(100)]
|
||||
public string CharacterIdentification { get; set; }
|
||||
public string Reason { get; set; }
|
||||
[Timestamp]
|
||||
public byte[] Timestamp { get; set; }
|
||||
}
|
Reference in New Issue
Block a user