EventUploadReq.cs 537 B

1234567891011121314151617181920
  1. using System.Collections.Generic;
  2. namespace DeviceCenter
  3. {
  4. class EventUploadReq
  5. {
  6. public string ip { get; set; }
  7. public string startTime { get; set; }
  8. public string endTime { get; set; }
  9. public List<AcsEvent> events { get; set; }
  10. public EventUploadReq(string ip, string startTime, string endTime, List<AcsEvent> events)
  11. {
  12. this.ip = ip;
  13. this.startTime = startTime;
  14. this.endTime = endTime;
  15. this.events = events;
  16. }
  17. }
  18. }