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