aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Web/Tango.MachineService/Views/_ViewStart.cshtml
blob: 2de62418c07c3ffa833543f484445dbfd0fe68d8 (plain)
1
2
3
@{
    Layout = "~/Views/Shared/_Layout.cshtml";
}
do */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
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;
        }
    }
}