Files
IGP-Fan-Reference/Model/Variable.cs
T

10 lines
185 B
C#

using System.ComponentModel.DataAnnotations;
namespace Model;
public class Variable
{
[Key] public string Key { get; set; } = "";
public string Value { get; set; } = "";
}