697a752be0
fix rare issue with summing session scores copy font to expected wwwroot dir in debug mode so we get pretty icons when developing upgrade some packages pretty much reworked the entire server web config to support better validation and stuff.. not really a small fix finish web configuration changes (I think) finish up configuration changes and update shared library nuget
18 lines
552 B
C#
18 lines
552 B
C#
using SharedLibraryCore.Interfaces;
|
|
|
|
namespace SharedLibraryCore.Configuration
|
|
{
|
|
public class DefaultConfiguration : IBaseConfiguration
|
|
{
|
|
public string[] AutoMessages { get; set; }
|
|
public string[] GlobalRules { get; set; }
|
|
public MapConfiguration[] Maps { get; set; }
|
|
public QuickMessageConfiguration[] QuickMessages {get; set;}
|
|
public string[] DisallowedClientNames { get; set; }
|
|
|
|
public IBaseConfiguration Generate() => this;
|
|
|
|
public string Name() => "DefaultConfiguration";
|
|
}
|
|
}
|