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