aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Api/Models/StartupDtos/StartupConfigurationDto.cs
blob: 4027078190fd51935afd97d452891871fdcae5d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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; }
}