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