9 lines
191 B
C#
9 lines
191 B
C#
namespace TestingRoom_NN_Kajk_UI.Models
|
|
{
|
|
public class VariablesModel
|
|
{
|
|
public string Name { get; set; }
|
|
public string Value { get; set; }
|
|
public bool IsDefault { get; set; }
|
|
}
|
|
}
|