using Common.Models.ExchangeRate; namespace Common.Models.RequestResponse { public class TPResponse { public string ResponseCode { get; set; } public string Msg { get; set; } public string Id { get; set; } public object Data { get; set; } public string Extra { get; set; } public string Extra2 { get; set; } public string Extra3 { get; set; } public string Extra4 { get; set; } public void SetResponse(string responseCode, string msg, string id) { ResponseCode = responseCode; Msg = msg; Id = id; } } public class TPResponsev2 { public string ResponseCode { get; set; } public string Msg { get; set; } public string Id { get; set; } public ExRateResponse Data { get; set; } public string Extra { get; set; } public string Extra2 { get; set; } public string Extra3 { get; set; } public void SetResponse(string responseCode, string msg, string id) { ResponseCode = responseCode; Msg = msg; Id = id; } } }