You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

40 lines
1.1 KiB

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 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;
}
}
}