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
392 B

  1. namespace CustomerOnlineV2.Common.Models
  2. {
  3. public class TPResponse
  4. {
  5. public string? ResponseCode { get; set; }
  6. public string? Msg { get; set; }
  7. public string? Id { get; set; }
  8. public object? Data { get; set; }
  9. public string? Extra { get; set; }
  10. public string? Extra2 { get; set; }
  11. public string? Extra3 { get; set; }
  12. }
  13. }