32 lines
842 B
C#
32 lines
842 B
C#
// <copyright file="StartupConfigurationDto.cs" company="PlaceholderCompany">
|
|
// Copyright (c) PlaceholderCompany. All rights reserved.
|
|
// </copyright>
|
|
|
|
namespace Jellyfin.Api.Models.StartupDtos;
|
|
|
|
/// <summary>
|
|
/// The startup configuration DTO.
|
|
/// </summary>
|
|
public class StartupConfigurationDto
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the server name.
|
|
/// </summary>
|
|
public string? ServerName { get; set; }
|
|
|
|
/// <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; }
|
|
}
|