Merge pull request #3203 from sbwalker/dev

documentation for ReleaseVersions property
This commit is contained in:
Shaun Walker 2023-08-28 15:27:47 -04:00 committed by GitHub
commit 54f3c8beac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -97,6 +97,10 @@ namespace Oqtane.Models
[NotMapped]
public string ControlTypeRoutes { get; set; }
/// <summary>
/// ReleaseVersions contains a comma delimited list of all official release versions of a module ie "1.0.0,1.0.1"
/// Must be set for modules which use SQL scripts or include version-based logic in IInstallable implementations
/// </summary>
[NotMapped]
public string ReleaseVersions { get; set; }