RAGECOOP-V/Server/Blocklist.cs
2022-05-22 15:55:26 +08:00

11 lines
221 B
C#

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