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