0
0
mirror of https://github.com/sp-tarkov/patcher.git synced 2025-02-12 17:10:46 -05:00

15 lines
289 B
C#

namespace PatcherUtils
{
public class LineItem
{
public string ItemText;
public int ItemValue;
public LineItem(string ItemText, int ItemValue = 0)
{
this.ItemText = ItemText;
this.ItemValue = ItemValue;
}
}
}