using global::System;
namespace MediaBrowser.Model.Globalization
{
    /// 
    /// Class CultureDto
    /// 
    public class CultureDto
    {
        /// 
        /// 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 language.
        /// 
        /// The name of the two letter ISO language.
        public string TwoLetterISOLanguageName { get; set; }
        /// 
        /// Gets or sets the name of the three letter ISO language.
        /// 
        /// The name of the three letter ISO language.
        public string ThreeLetterISOLanguageName
        {
            get
            {
                var vals = ThreeLetterISOLanguageNames;
                if (vals.Length > 0)
                {
                    return vals[0];
                }
                return null;
            }
        }
        public string[] ThreeLetterISOLanguageNames { get; set; }
        public CultureDto()
        {
            ThreeLetterISOLanguageNames = Array.Empty();
        }
    }
}