| 1234567891011121314151617181920 |
- using System.Collections.Generic;
- namespace DeviceCenter
- {
- class EventUploadReq
- {
- public string ip { get; set; }
- public string startTime { get; set; }
- public string endTime { get; set; }
- public List<AcsEvent> events { get; set; }
- public EventUploadReq(string ip, string startTime, string endTime, List<AcsEvent> events)
- {
- this.ip = ip;
- this.startTime = startTime;
- this.endTime = endTime;
- this.events = events;
- }
- }
- }
|