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.
 
 
 
 
 

13 lines
394 B

namespace CustomerOnlineRemit.Common.Model
{
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; }
}
}