1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-10 23:31:13 -05:00

more config updates

This commit is contained in:
RaidMax
2018-03-14 13:22:04 -05:00
parent d836f71b1b
commit 0312238ef0
13 changed files with 285 additions and 147 deletions

View File

@ -12,6 +12,9 @@ namespace SharedLibrary.Configuration
public string DiscordInviteCode { get; set; }
public string IPHubAPIKey { get; set; }
public List<ServerConfiguration> Servers { get; set; }
public int AutoMessagePeriod { get; set; }
public List<string> AutoMessages { get; set; }
public List<string> Rules { get; set; }
public List<MapConfiguration> Maps { get; set; }
}
}

View File

@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using static SharedLibrary.Server;
namespace SharedLibrary.Configuration
{
public class MapConfiguration
{
public Game Game { get; set; }
public List<Map> Maps { get; set; }
}
}