1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-08 14:18:20 -05:00
IW4M-Admin/Plugins/Stats/Config/WeaponNameParserConfiguration.cs
2023-02-11 21:01:28 -06:00

13 lines
303 B
C#

using Data.Models;
namespace Stats.Config
{
public class WeaponNameParserConfiguration
{
public Reference.Game Game { get; set; }
public char[] Delimiters { get; set; }
public string WeaponSuffix { get; set; }
public string WeaponPrefix { get; set; }
}
}