aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Tango.PPC.Shared/Updates/PackageInstallation.cs
blob: 639fd76bf444006ab7e31191780fbe6b66c89127 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Tango.PPC.Shared.Updates
{
    public class PackageInstallation
    {
        public String PackageName { get; set; }

        public PackageType Type { get; set; }

        public DateTime InstallationDate { get; set; }

        public PackageInstallationState State { get; set; }

        public String FailedReason { get; set; }

        public PackageInstallation()
        {
            InstallationDate = DateTime.Now;
        }
    }
}