Files

11 lines
214 B
C#
Raw Permalink Normal View History

2025-08-22 11:55:35 +01:00
using System.ComponentModel.DataAnnotations;
namespace MareSynchronosShared.Models;
public class BannedRegistrations
{
[Key]
[MaxLength(100)]
public string DiscordIdOrLodestoneAuth { get; set; }
}