2016-06-13 23:35:09 +02:00
|
|
|
|
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")]
|
2016-06-14 14:12:10 +02:00
|
|
|
|
public string PostInstallationPath { get; set; }
|
2016-06-13 23:35:09 +02:00
|
|
|
|
}
|
2017-07-20 11:21:28 +02:00
|
|
|
|
}
|