You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
640 B
24 lines
640 B
5 years ago
|
namespace Jellyfin.Api.Models.StartupDtos
|
||
5 years ago
|
{
|
||
5 years ago
|
/// <summary>
|
||
|
/// The startup configuration DTO.
|
||
|
/// </summary>
|
||
5 years ago
|
public class StartupConfigurationDto
|
||
5 years ago
|
{
|
||
5 years ago
|
/// <summary>
|
||
|
/// Gets or sets UI language culture.
|
||
|
/// </summary>
|
||
5 years ago
|
public string UICulture { get; set; }
|
||
5 years ago
|
|
||
|
/// <summary>
|
||
|
/// Gets or sets the metadata country code.
|
||
|
/// </summary>
|
||
5 years ago
|
public string MetadataCountryCode { get; set; }
|
||
5 years ago
|
|
||
|
/// <summary>
|
||
|
/// Gets or sets the preferred language for the metadata.
|
||
|
/// </summary>
|
||
5 years ago
|
public string PreferredMetadataLanguage { get; set; }
|
||
|
}
|
||
|
}
|