0
0
mirror of https://github.com/sp-tarkov/patcher.git synced 2025-02-13 03:10:47 -05:00

16 lines
345 B
C#

namespace PatcherUtils
{
public class LineItem
{
public string ItemText;
public string ItemValue;
public bool HasValue => ItemValue != "";
public LineItem(string ItemText, string ItemValue = "")
{
this.ItemText = ItemText;
this.ItemValue = ItemValue;
}
}
}