namespace MediaBrowser.Model.Globalization { /// /// Class CountryInfo /// public class CountryInfo { /// /// Gets or sets the name. /// /// The name. public string Name { get; set; } /// /// Gets or sets the display name. /// /// The display name. public string DisplayName { get; set; } /// /// Gets or sets the name of the two letter ISO region. /// /// The name of the two letter ISO region. public string TwoLetterISORegionName { get; set; } /// /// Gets or sets the name of the three letter ISO region. /// /// The name of the three letter ISO region. public string ThreeLetterISORegionName { get; set; } } }