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.

16 lines
397 B

  1. using System.Collections.Generic;
  2. namespace Transfast.Model.Address.State
  3. {
  4. public class TFStateResponse
  5. {
  6. public string Id { get; set; }
  7. public string Name { get; set; }
  8. public string IsoCode { get; set; }
  9. public string CountryIsoCode { get; set; }
  10. }
  11. public class _States
  12. {
  13. public List<TFStateResponse> States { get; set; }
  14. }
  15. }