2023-02-11 22:01:28 -05:00
|
|
|
|
using Data.Models;
|
2021-03-22 12:09:25 -04:00
|
|
|
|
|
|
|
|
|
namespace Stats.Config
|
|
|
|
|
{
|
|
|
|
|
public class WeaponNameParserConfiguration
|
|
|
|
|
{
|
2023-02-11 22:01:28 -05:00
|
|
|
|
public Reference.Game Game { get; set; }
|
2021-03-22 12:09:25 -04:00
|
|
|
|
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
|
|
|
|
}
|
2023-02-11 22:01:28 -05:00
|
|
|
|
}
|