Files
LightlessServer/LightlessSyncServer/LightlessSyncShared/Models/Banned.cs
defnotken 8217d99478 Added Ban and Unban calls
Co-authored-by: defnotken <itsdefnotken@gmail.com>
Reviewed-on: #2
2025-09-06 00:15:19 +02:00

15 lines
338 B
C#

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