12 lines
282 B
C#
12 lines
282 B
C#
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace CoopServer
|
|||
|
{
|
|||
|
public class Blocklist
|
|||
|
{
|
|||
|
public List<string> SocialClubName { get; set; } = new();
|
|||
|
public List<string> Username { get; set; } = new();
|
|||
|
public List<string> IP { get; set; } = new();
|
|||
|
}
|
|||
|
}
|