using ProtoBuf; namespace MediaBrowser.Model.Globalization { /// /// Class CountryInfo /// [ProtoContract] public class CountryInfo { /// /// Gets or sets the name. /// /// The name. [ProtoMember(1)] public string Name { get; set; } /// /// Gets or sets the display name. /// /// The display name. [ProtoMember(2)] public string DisplayName { get; set; } /// /// Gets or sets the name of the two letter ISO region. /// /// The name of the two letter ISO region. [ProtoMember(3)] public string TwoLetterISORegionName { get; set; } /// /// Gets or sets the name of the three letter ISO region. /// /// The name of the three letter ISO region. [ProtoMember(4)] public string ThreeLetterISORegionName { get; set; } } }