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

12 lines
282 B
C#

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