Files
mixtape/zero.Core/Entities/Setup/SetupModel.cs
T

31 lines
561 B
C#
Raw Normal View History

2020-04-03 16:45:47 +02:00
namespace zero.Core.Entities.Setup
{
public sealed class SetupModel
{
public string AppName { get; set; }
public SetupUserModel User { get; set; }
public SetupDatabaseModel Database { get; set; }
2020-04-04 19:31:01 +02:00
public string ContentRootPath { get; set; }
2020-04-03 16:45:47 +02:00
}
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; }
}
}