blob: 769d2e1bb6774402d496c6e5d090f9ddd2d6a306 (
plain)
1
2
3
4
5
6
7
8
9
|
namespace Jellyfin.Api.Models.Startup
{
public class StartupConfigurationDto
{
public string UICulture { get; set; }
public string MetadataCountryCode { get; set; }
public string PreferredMetadataLanguage { get; set; }
}
}
|