jellyfin-server/Jellyfin.Api/Models/StartupDtos/StartupConfigurationDto.cs

24 lines
643 B
C#
Raw Normal View History

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