TestingRoom_NN_Kajk_UI/Models/VariablesModel.cs

10 lines
191 B
C#
Raw Permalink Normal View History

namespace TestingRoom_NN_Kajk_UI.Models
{
public class VariablesModel
{
public string Name { get; set; }
public string Value { get; set; }
public bool IsDefault { get; set; }
}
}