终端一体化运控平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

BaseEvent.cs 408 B

2 years ago
2 years ago
2 years ago
2 years ago
123456789101112131415161718
  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. }