1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-07 21:58:06 -05:00
IW4M-Admin/Plugins/Stats/Config/WeaponNameParserConfiguration.cs
2024-07-16 22:27:27 +01:00

13 lines
321 B
C#

using Data.Models;
namespace IW4MAdmin.Plugins.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; }
}
}