aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Api/Models/StartupDtos/StartupConfigurationDto.cs
blob: 1ba23339d00b3743274dada9a82b89886eddb471 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
namespace Jellyfin.Api.Models.StartupDtos;

/// <summary>
/// The startup configuration DTO.
/// </summary>
public class StartupConfigurationDto
{
    /// <summary>
    /// Gets or sets the server name.
    /// </summary>
    public string? ServerName { get; set; }

    /// <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; }
}