9f8c35dbed
add disallowed client names to default config fix ping not working for targets
21 lines
639 B
C#
21 lines
639 B
C#
using SharedLibraryCore.Interfaces;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace SharedLibraryCore.Configuration
|
|
{
|
|
public class DefaultConfiguration : IBaseConfiguration
|
|
{
|
|
public List<string> AutoMessages { get; set; }
|
|
public List<string> GlobalRules { get; set; }
|
|
public List<MapConfiguration> Maps { get; set; }
|
|
public List<QuickMessageConfiguration> QuickMessages {get; set;}
|
|
public List<string> DisallowedClientNames { get; set; }
|
|
|
|
public IBaseConfiguration Generate() => this;
|
|
|
|
public string Name() => "DefaultConfiguration";
|
|
}
|
|
}
|