mare.server/MareSynchronosServer/MareSynchronosServer/Models/BannedRegistrations.cs
2022-08-16 19:04:53 +02:00

11 lines
240 B
C#

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