Gets lots of the new installer logic working

This commit is contained in:
Shannon
2014-02-26 16:01:31 +01:00
parent f9475305bb
commit f9304d7f04
48 changed files with 1745 additions and 728 deletions

View File

@@ -0,0 +1,29 @@
using System.Runtime.Serialization;
namespace Umbraco.Web.Install.Models
{
[DataContract(Name = "database", Namespace = "")]
public class DatabaseModel
{
[DataMember(Name = "dbType")]
public DatabaseType DatabaseType { get; set; }
[DataMember(Name = "server")]
public string Server { get; set; }
[DataMember(Name = "databaseName")]
public string DatabaseName { get; set; }
[DataMember(Name = "login")]
public string Login { get; set; }
[DataMember(Name = "password")]
public string Password { get; set; }
[DataMember(Name = "integratedAuth")]
public bool IntegratedAuth { get; set; }
[DataMember(Name = "connectionString")]
public string ConnectionString { get; set; }
}
}