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