RE 3
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
Reference in New Issue
Block a user