Gets local package installation 'working', now needs a little UI work.

This commit is contained in:
Shannon
2016-06-13 18:28:56 +02:00
parent f5d3f9087f
commit c2b016d7d0
9 changed files with 405 additions and 52 deletions

View File

@@ -1,5 +1,4 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using System.Text;
@@ -10,7 +9,7 @@ namespace Umbraco.Web.Models
[DataContract(Name = "packageInstallModel")]
public class PackageInstallModel
{
[DataMember(Name="id")]
[DataMember(Name = "id")]
public int Id { get; set; }
[DataMember(Name = "packageGuid")]
@@ -24,5 +23,7 @@ namespace Umbraco.Web.Models
[DataMember(Name = "zipFilePath")]
public string ZipFilePath { get; set; }
}
}