namespace Oqtane.Models { /// /// Information about a Database used in the current Oqtane installation /// public class Database { /// /// Friendly name for the Admin to identify the DB /// public string FriendlyName { get; set; } /// /// Name of the Database /// public string Name { get; set; } /// /// Namespace & name of the UI control to configure this database, like `Oqtane.Installer.Controls.SqlServerConfig, Oqtane.Client` /// public string ControlType { get; set; } /// /// Type of DB using the full namespace, like `Oqtane.Database.SqlServer.SqlServerDatabase, Oqtane.Database.SqlServer` /// public string DBType { get; set; } /// /// Software package responsible for using this DB - like `Oqtane.Database.MySQL` /// public string Package { get; set; } } }