allow modules to be able to specify the databases they support

This commit is contained in:
sbwalker
2025-09-02 08:32:46 -04:00
parent 6daf675e52
commit b5fdf42c37
3 changed files with 39 additions and 2 deletions

View File

@ -33,6 +33,7 @@ namespace Oqtane.Models
SettingsType = "";
PackageName = "";
Runtimes = "";
Databases = "";
Template = "";
Resources = null;
IsAutoEnabled = true;
@ -83,7 +84,10 @@ namespace Oqtane.Models
public string License { get; set; }
[NotMapped]
public string Runtimes { get; set; }
public string Runtimes { get; set; } // comma-delimited list of runtimes ie. Server, WebAssembly
[NotMapped]
public string Databases { get; set; } // comma-delimited list of database names ie. SQLServer, SQLite
[NotMapped]
public string Dependencies { get; set; }