mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-07 21:58:06 -05:00
18 lines
560 B
C#
18 lines
560 B
C#
using System.Collections.Generic;
|
|
|
|
namespace SharedLibrary.Configuration
|
|
{
|
|
public class ApplicationConfiguration
|
|
{
|
|
public bool EnableMultipleOwners { get; set; }
|
|
public bool EnableTrustedRank { get; set; }
|
|
public bool EnableClientVPNs { get; set; }
|
|
public bool EnableAntiCheat { get; set; }
|
|
public bool EnableDiscordLink { get; set; }
|
|
public string DiscordInviteCode { get; set; }
|
|
public string IPHubAPIKey { get; set; }
|
|
public List<ServerConfiguration> Servers { get; set; }
|
|
|
|
}
|
|
}
|