Files
2026-05-29 14:17:46 -04:00

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; } = "";
}