33 lines
879 B
C#
33 lines
879 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Cowain.Preheat.Common.Models
|
|
{
|
|
public class ProceParamList
|
|
{
|
|
//public int Id { get; set; }
|
|
public string OperationName { get; set; }
|
|
public string OperationDesc { get; set; }
|
|
public string OperationValue { get; set; }
|
|
}
|
|
|
|
public class SignalEvent
|
|
{
|
|
public string InfoName { get; set; } //枚举名
|
|
public string InfoDesc { get; set; } //描述
|
|
public int DetailNumber { get; set; } //编号
|
|
public DateTime RecvTime { get; set; }//时间
|
|
}
|
|
|
|
public class SizeAndLocationModel
|
|
{
|
|
public double Left { get; set; }
|
|
public double Top { get; set; }
|
|
public double Width { get; set; }
|
|
public double Height { get; set; }
|
|
}
|
|
}
|