aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Tango.PPC.Common/BackupRestore/BackupFile.cs
blob: 42e6fec4276af0f42ea3848e578c0bb2a8cb84f4 (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
27
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.Web;

namespace Tango.PPC.Common.BackupRestore
{
    public class BackupFile
    {
        public String Name { get; set; }
        public DateTime Date { get; set; }
        public String MachineSerialNumber { get; set; }

        public String ApplicationVersion { get; set; }
        public String FirmwareVersion { get; set; }
        public String SettingsFile { get; set; }

        public BackupSettings Settings { get; set; }

        public BackupFile()
        {
            Settings = new BackupSettings();
        }
    }
}