2021-03-22 12:09:25 -04:00
|
|
|
|
using SharedLibraryCore;
|
|
|
|
|
|
|
|
|
|
namespace Stats.Config
|
|
|
|
|
{
|
|
|
|
|
public class WeaponNameParserConfiguration
|
|
|
|
|
{
|
|
|
|
|
public Server.Game Game { get; set; }
|
|
|
|
|
public char[] Delimiters { get; set; }
|
|
|
|
|
public string WeaponSuffix { get; set; }
|
2021-03-23 17:01:48 -04:00
|
|
|
|
public string WeaponPrefix { get; set; }
|
2021-03-22 12:09:25 -04:00
|
|
|
|
}
|
|
|
|
|
}
|