2021-07-07 13:36:25 +02:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
2022-05-22 15:55:26 +08:00
|
|
|
|
namespace RageCoop.Server
|
2021-07-07 13:36:25 +02:00
|
|
|
|
{
|
|
|
|
|
public class Blocklist
|
|
|
|
|
{
|
|
|
|
|
public List<string> Username { get; set; } = new();
|
|
|
|
|
public List<string> IP { get; set; } = new();
|
|
|
|
|
}
|
|
|
|
|
}
|