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.

15 lines
334 B

  1. using System.Collections.Generic;
  2. namespace Transfast.Model.Bank
  3. {
  4. public class TFBankResponse
  5. {
  6. public string Id { get; set; }
  7. public string Name { get; set; }
  8. }
  9. public class _TFBank
  10. {
  11. public int TotalCount { get; set; }
  12. public List<TFBankResponse> Banks { get; set; }
  13. }
  14. }