Move StartupWizard to ASP.NET Web Api

This commit is contained in:
Claus Vium
2019-07-02 12:21:54 +02:00
parent c0d10800ab
commit e5d57bd82f
9 changed files with 192 additions and 142 deletions

View File

@@ -0,0 +1,9 @@
namespace Jellyfin.Api.Models.Startup
{
public class StartupConfiguration
{
public string UICulture { get; set; }
public string MetadataCountryCode { get; set; }
public string PreferredMetadataLanguage { get; set; }
}
}

View File

@@ -0,0 +1,8 @@
namespace Jellyfin.Api.Models.Startup
{
public class StartupUser
{
public string Name { get; set; }
public string Password { get; set; }
}
}