This commit is contained in:
2021-11-20 13:52:28 +01:00
parent be9ad9d335
commit 2d6d798771
367 changed files with 4840 additions and 7501 deletions
+29
View File
@@ -0,0 +1,29 @@
namespace zero.Setup;
public sealed class SetupModel
{
public string AppName { get; set; }
public SetupUserModel User { get; set; }
public SetupDatabaseModel Database { get; set; }
public string ContentRootPath { get; set; }
}
public sealed class SetupUserModel
{
public string Name { get; set; }
public string Email { get; set; }
public string Password { get; set; }
}
public sealed class SetupDatabaseModel
{
public string Url { get; set; }
public string Name { get; set; }
}