Ensures the min umbraco version is checked when installing packages that have the strict flag set.
This commit is contained in:
14
src/Umbraco.Web/Models/PackageInstallResult.cs
Normal file
14
src/Umbraco.Web/Models/PackageInstallResult.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
using System;
|
||||
using System.Runtime.Serialization;
|
||||
|
||||
namespace Umbraco.Web.Models
|
||||
{
|
||||
/// <summary>
|
||||
/// Model that is returned when a package is totally finished installing
|
||||
/// </summary>
|
||||
public class PackageInstallResult : PackageInstallModel
|
||||
{
|
||||
[DataMember(Name = "postInstallationPath")]
|
||||
public Guid PostInstallationPath { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user