2019-11-24 14:27:58 +00:00
|
|
|
namespace Jellyfin.Api.Models.StartupDtos
|
2019-07-02 10:21:54 +00:00
|
|
|
{
|
2019-11-23 19:31:17 +00:00
|
|
|
/// <summary>
|
|
|
|
/// The startup configuration DTO.
|
|
|
|
/// </summary>
|
2019-11-23 15:31:02 +00:00
|
|
|
public class StartupConfigurationDto
|
2019-07-02 10:21:54 +00:00
|
|
|
{
|
2019-11-23 19:31:17 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets UI language culture.
|
|
|
|
/// </summary>
|
2020-06-18 13:11:46 +00:00
|
|
|
public string? UICulture { get; set; }
|
2019-11-23 19:31:17 +00:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the metadata country code.
|
|
|
|
/// </summary>
|
2020-06-18 13:11:46 +00:00
|
|
|
public string? MetadataCountryCode { get; set; }
|
2019-11-23 19:31:17 +00:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the preferred language for the metadata.
|
|
|
|
/// </summary>
|
2020-06-18 13:11:46 +00:00
|
|
|
public string? PreferredMetadataLanguage { get; set; }
|
2019-07-02 10:21:54 +00:00
|
|
|
}
|
|
|
|
}
|