Files
RAGECOOP-V/RageCoop.Server/Blocklist.cs
2022-06-06 18:27:19 +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();
}
}