9 lines
192 B
C#
9 lines
192 B
C#
|
|
namespace LANCommander.Server.Models
|
||
|
|
{
|
||
|
|
public class VariablePickerOptions
|
||
|
|
{
|
||
|
|
public string Value { get; set; } = "";
|
||
|
|
public string FieldName { get; set; } = "";
|
||
|
|
}
|
||
|
|
}
|