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:
@ -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; }
|
||||
}
|
||||
}
|
||||
|
16
SharedLibrary/Configuration/MapConfiguration.cs
Normal file
16
SharedLibrary/Configuration/MapConfiguration.cs
Normal 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; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user