RAGECOOP-V/Server/Allowlist.cs

10 lines
162 B
C#
Raw Normal View History

2021-07-07 13:36:25 +02:00
using System.Collections.Generic;
namespace CoopServer
{
public class Allowlist
{
public List<string> Username { get; set; } = new();
2021-07-07 13:36:25 +02:00
}
}