Files
Umbraco-CMS/src/Umbraco.Core/Models/PackageInstallModel.cs

26 lines
669 B
C#
Raw Normal View History

2014-08-18 20:42:56 +02:00
using System;
using System.Runtime.Serialization;
namespace Umbraco.Cms.Core.Models
2014-08-18 20:42:56 +02:00
{
[DataContract(Name = "packageInstallModel")]
public class PackageInstallModel
{
[DataMember(Name = "id")]
2014-08-18 20:42:56 +02:00
public int Id { get; set; }
[DataMember(Name = "packageGuid")]
public Guid PackageGuid { get; set; }
2019-01-15 22:08:08 +11:00
[DataMember(Name = "zipFileName")]
public string ZipFileName { get; set; }
2017-09-12 16:22:16 +02:00
/// <summary>
/// During installation this can be used to track any pending AppDomain restarts
2017-09-12 16:22:16 +02:00
/// </summary>
[DataMember(Name = "isRestarting")]
public bool IsRestarting { get; set; }
2014-08-18 20:42:56 +02:00
}
}