RAGECOOP-V/Server/Blocklist.cs

12 lines
282 B
C#
Raw Normal View History

2021-07-07 13:36:25 +02:00
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();
}
}