aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Api/Models/StartupDtos/StartupConfigurationDto.cs
blob: a5f012245a3fdcbf43c19ea3c5d8cc66889e84f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
namespace Jellyfin.Api.Models.StartupDtos
{
    /// <summary>
    /// The startup configuration DTO.
    /// </summary>
    public class StartupConfigurationDto
    {
        /// <summary>
        /// Gets or sets UI language culture.
        /// </summary>
        public string? UICulture { get; set; }

        /// <summary>
        /// Gets or sets the metadata country code.
        /// </summary>
        public string? MetadataCountryCode { get; set; }

        /// <summary>
        /// Gets or sets the preferred language for the metadata.
        /// </summary>
        public string? PreferredMetadataLanguage { get; set; }
    }
}