RAGECOOP-V/Server/Allowlist.cs
2022-05-22 15:55:26 +08:00

10 lines
167 B
C#

using System.Collections.Generic;
namespace RageCoop.Server
{
public class Allowlist
{
public List<string> Username { get; set; } = new();
}
}