RawMsg.cs 555 字节
Newer Older
1
using System;
麦壳饼's avatar
麦壳饼 已提交
2 3 4 5
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;

6
namespace IoTSharp.Data
麦壳饼's avatar
麦壳饼 已提交
7 8
{

麦壳饼's avatar
麦壳饼 已提交
9 10 11 12 13
    public class DeviceStatus
    {
        public Guid DeviceId { get; set; }
        public bool Status { get; set; }
    }
麦壳饼's avatar
麦壳饼 已提交
14 15 16 17 18 19
  
    public class RawMsg
    {
        public MsgType MsgType { get; set; }
  
        public Guid DeviceId { get;   set; }
麦壳饼's avatar
麦壳饼 已提交
20 21 22
        public Dictionary<string, object> MsgBody { get;  set; }
        public DataSide DataSide { get;  set; }
        public DataCatalog DataCatalog { get;  set; }
麦壳饼's avatar
麦壳饼 已提交
23 24
    }
}