RAGECOOP-V/Server/Blocklist.cs

11 lines
216 B
C#

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