20 lines
418 B
C#
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; }
|
|
}
|
|
}
|