ibms-dome/FrontendWorkerService/Models/Variable.cs
2022-10-14 16:08:54 +08:00

20 lines
418 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace FrontendWorkerService.Models
{
public class Variable
{
public string System_type { get; set; }
public string System_key { get; set; }
public string system_value { get; set; }
}
public class KeyValue
{
public string Name { get; set; }
public string Value { get; set; }
}
}