mirror of
https://github.com/Caraxi/mare.server.git
synced 2025-12-13 19:14:16 +01:00
11 lines
240 B
C#
11 lines
240 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace MareSynchronosShared.Models
|
|
{
|
|
public class BannedRegistrations
|
|
{
|
|
[Key]
|
|
[MaxLength(100)]
|
|
public string DiscordIdOrLodestoneAuth { get; set; }
|
|
}
|
|
}
|