using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace RestartService { public class ResponseData where T : class { public int code { get; set; } public bool isSuccess { get; set; } public string requestId { get; set; } public string timestamp { get; set; } public T data { get; set; } } }