jellyfin/Jellyfin.Api/Models/Startup/StartupConfigurationDto.cs
2019-11-23 20:31:17 +01:00

24 lines
636 B
C#

namespace Jellyfin.Api.Models.Startup
{
/// <summary>
/// The startup configuration DTO.
/// </summary>
public class StartupConfigurationDto
{
/// <summary>
/// Gets or sets UI language culture.
/// </summary>
public string UICulture { get; set; }
/// <summary>
/// Gets or sets the metadata country code.
/// </summary>
public string MetadataCountryCode { get; set; }
/// <summary>
/// Gets or sets the preferred language for the metadata.
/// </summary>
public string PreferredMetadataLanguage { get; set; }
}
}