CountryInfo.cs 1.1 KB

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