using ProtoBuf;
namespace MediaBrowser.Model.Globalization
{
    /// 
    /// Class CultureDto
    /// 
    [ProtoContract]
    public class CultureDto
    {
        /// 
        /// 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 language.
        /// 
        /// The name of the two letter ISO language.
        [ProtoMember(3)]
        public string TwoLetterISOLanguageName { get; set; }
        /// 
        /// Gets or sets the name of the three letter ISO language.
        /// 
        /// The name of the three letter ISO language.
        [ProtoMember(4)]
        public string ThreeLetterISOLanguageName { get; set; }
    }
}