Files
ClubPenguinServer/MareSynchronosServer/MareSynchronosServer/Models/Banned.cs
2022-08-16 19:04:53 +02:00

15 lines
335 B
C#

using System.ComponentModel.DataAnnotations;
namespace MareSynchronosServer.Models
{
public class Banned
{
[Key]
[MaxLength(100)]
public string CharacterIdentification { get; set; }
public string Reason { get; set; }
[Timestamp]
public byte[] Timestamp { get; set; }
}
}