20 lines
422 B
C#
20 lines
422 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace AlarmMonitorWorkerService.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; }
|
|||
|
}
|
|||
|
}
|