using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HDLMonitorService.Entity { public class ResponseData { public int code { get; set; } public bool isSuccess { get; set; } public string requestId { get; set; } public string timestamp { get; set; } public object data { get; set; } } }