RAGECOOP-V/Server/Allowlist.cs
2021-07-07 13:36:25 +02:00

10 lines
168 B
C#

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