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

24 lines
643 B
C#
Raw Normal View History

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