CountryInfo.cs 967 B

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