Ensures the min umbraco version is checked when installing packages that have the strict flag set.

This commit is contained in:
Shannon
2016-06-13 23:35:09 +02:00
parent 67d71908bf
commit a8c71e52ec
14 changed files with 286 additions and 305 deletions

View 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; }
}
}