mirror of
https://github.com/sp-tarkov/patcher.git
synced 2025-02-13 02:50:47 -05:00
16 lines
345 B
C#
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;
|
|
}
|
|
}
|
|
}
|