Files
2025-08-22 11:55:35 +01:00

11 lines
214 B
C#

using System.ComponentModel.DataAnnotations;
namespace MareSynchronosShared.Models;
public class BannedRegistrations
{
[Key]
[MaxLength(100)]
public string DiscordIdOrLodestoneAuth { get; set; }
}