2
0

CountryInfo.cs 986 B

123456789101112131415161718192021222324252627282930313233
  1. #nullable disable
  2. namespace MediaBrowser.Model.Globalization
  3. {
  4. /// <summary>
  5. /// Class CountryInfo.
  6. /// </summary>
  7. public class CountryInfo
  8. {
  9. /// <summary>
  10. /// Gets or sets the name.
  11. /// </summary>
  12. /// <value>The name.</value>
  13. public string Name { get; set; }
  14. /// <summary>
  15. /// Gets or sets the display name.
  16. /// </summary>
  17. /// <value>The display name.</value>
  18. public string DisplayName { get; set; }
  19. /// <summary>
  20. /// Gets or sets the name of the two letter ISO region.
  21. /// </summary>
  22. /// <value>The name of the two letter ISO region.</value>
  23. public string TwoLetterISORegionName { get; set; }
  24. /// <summary>
  25. /// Gets or sets the name of the three letter ISO region.
  26. /// </summary>
  27. /// <value>The name of the three letter ISO region.</value>
  28. public string ThreeLetterISORegionName { get; set; }
  29. }
  30. }