11 lines
221 B
C#
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();
|
|
}
|
|
}
|