0
0
mirror of https://github.com/sp-tarkov/patcher.git synced 2025-02-13 07:50:49 -05:00

15 lines
289 B
C#
Raw Normal View History

2021-08-01 00:36:37 -04:00
namespace PatcherUtils
{
public class LineItem
{
public string ItemText;
public int ItemValue;
2021-08-01 00:36:37 -04:00
public LineItem(string ItemText, int ItemValue = 0)
2021-08-01 00:36:37 -04:00
{
this.ItemText = ItemText;
this.ItemValue = ItemValue;
}
}
}