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

23 lines
569 B
C#
Raw Normal View History

2023-01-31 12:18:10 +01:00
namespace Jellyfin.Api.Models.StartupDtos;
/// <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>
2023-01-31 12:18:10 +01:00
/// Gets or sets UI language culture.
2019-11-23 20:31:17 +01:00
/// </summary>
2023-01-31 12:18:10 +01:00
public string? UICulture { get; set; }
2019-11-23 20:31:17 +01:00
2023-01-31 12:18:10 +01:00
/// <summary>
/// Gets or sets the metadata country code.
/// </summary>
public string? MetadataCountryCode { get; set; }
2019-11-23 20:31:17 +01:00
2023-01-31 12:18:10 +01:00
/// <summary>
/// Gets or sets the preferred language for the metadata.
/// </summary>
public string? PreferredMetadataLanguage { get; set; }
2019-07-02 12:21:54 +02:00
}