using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.PPC.Shared.Updates;
namespace Tango.PPC.Common.UpdatePackages
{
[AttributeUsage(AttributeTargets.Class)]
public class PPCPackageAttribute : Attribute
{
public String Name { get; set; }
public PackageType Type { get; set; }
public bool RequiresRestart { get; set; }
public PPCPackageAttribute(PackageType type, String name, bool requiresRestart)
{
Type = type;
Name = name;
RequiresRestart = requiresRestart;
}
}
}