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.

19 lines
519 B

  1. using System.Collections.Generic;
  2. namespace Transfast.Model.Address.Town
  3. {
  4. public class TFTownResponse
  5. {
  6. public string Id { get; set; }
  7. public int CityId { get; set; }
  8. public string StateId { get; set; }
  9. public string Name { get; set; }
  10. public string CountryIsoCode { get; set; }
  11. public string Status { get; set; }
  12. }
  13. public class _Towns
  14. {
  15. public int TotalCount { get; set; }
  16. public List<TFTownResponse> Towns { get; set; }
  17. }
  18. }