10 lines
162 B
C#
10 lines
162 B
C#
using System.Collections.Generic;
|
|
|
|
namespace CoopServer
|
|
{
|
|
public class Allowlist
|
|
{
|
|
public List<string> Username { get; set; } = new();
|
|
}
|
|
}
|