Files
Umbraco-CMS/src/Umbraco.Web/Models/PackageInstallResult.cs

15 lines
382 B
C#
Raw Normal View History

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; }
}
2017-07-20 11:21:28 +02:00
}