Idea is to be able to install a complete package using the PackagingService, so that we eventually can obsolete the old Packager/Installer-code.
23 lines
717 B
C#
23 lines
717 B
C#
using System;
|
|
using System.Runtime.Serialization;
|
|
|
|
namespace Umbraco.Core.Packaging.Models
|
|
{
|
|
[Serializable]
|
|
[DataContract(IsReference = true)]
|
|
internal class MetaData
|
|
{
|
|
public string Name { get; set; }
|
|
public string Version { get; set; }
|
|
public string Url { get; set; }
|
|
public string License { get; set; }
|
|
public string LicenseUrl { get; set; }
|
|
public int ReqMajor { get; set; }
|
|
public int ReqMinor { get; set; }
|
|
public int ReqPatch { get; set; }
|
|
public string AuthorName { get; set; }
|
|
public string AuthorUrl { get; set; }
|
|
public string Readme { get; set; }
|
|
public string Control { get; set; }
|
|
}
|
|
} |