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.

18 lines
481 B

  1. using System.Collections.Generic;
  2. namespace Transfast.Model.Address.City
  3. {
  4. public class TFCityResponse
  5. {
  6. public int Id { get; set; }
  7. public string Name { get; set; }
  8. public string StateId { get; set; }
  9. public string StateName { get; set; }
  10. public string CountryIsoCode { get; set; }
  11. }
  12. public class _Cities
  13. {
  14. public int TotalCount { get; set; }
  15. public List<TFCityResponse> Cities { get; set; }
  16. }
  17. }