终端一体化运控平台
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

19 行
408 B

  1. using BPA.Message.Enum;
  2. using BPASmartClient.EventBus;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace BPASmartClient.Model
  9. {
  10. public class BaseEvent : IEvent
  11. {
  12. public int DeviceId { get; set; }
  13. public string TagName { get; set; }
  14. public DeviceClientType deviceClientType { get; set; }
  15. }
  16. }