namespace Jellyfin.Api.Models.StartupDtos;
/// 
/// The startup configuration DTO.
/// 
public class StartupConfigurationDto
{
    /// 
    /// Gets or sets the server name.
    /// 
    public string? ServerName { get; set; }
    /// 
    /// Gets or sets UI language culture.
    /// 
    public string? UICulture { get; set; }
    /// 
    /// Gets or sets the metadata country code.
    /// 
    public string? MetadataCountryCode { get; set; }
    /// 
    /// Gets or sets the preferred language for the metadata.
    /// 
    public string? PreferredMetadataLanguage { get; set; }
}