2014-08-18 20:42:56 +02:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Runtime.Serialization;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Umbraco.Web.Models
|
|
|
|
|
|
{
|
|
|
|
|
|
[DataContract(Name = "packageInstallModel")]
|
|
|
|
|
|
public class PackageInstallModel
|
|
|
|
|
|
{
|
2016-06-13 18:28:56 +02:00
|
|
|
|
[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; }
|
2016-06-13 18:28:56 +02:00
|
|
|
|
|
2017-09-12 16:22:16 +02:00
|
|
|
|
/// <summary>
|
2019-01-26 10:52:19 -05:00
|
|
|
|
/// 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; }
|
2019-01-16 16:27:51 +11:00
|
|
|
|
|
2014-08-18 20:42:56 +02:00
|
|
|
|
}
|
|
|
|
|
|
}
|