2021-03-22 11:09:25 -05: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 16:01:48 -05:00
|
|
|
|
public string WeaponPrefix { get; set; }
|
2021-03-22 11:09:25 -05:00
|
|
|
|
}
|
|
|
|
|
}
|