mirror of
https://github.com/Caraxi/mare.server.git
synced 2025-12-13 15:04:15 +01:00
14 lines
335 B
C#
14 lines
335 B
C#
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; }
|
|
}
|
|
}
|