Files

14 lines
297 B
C#
Raw Permalink Normal View History

2025-08-22 11:55:35 +01:00
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; }
}