blob: d1225a6093435da68ea53fe389f88d0dc3b0aeeb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tango.PPC.Common.BackupRestore
{
public class BackupSettings
{
public bool IncludeDatabase { get; set; }
public bool IncludeApplication { get; set; }
public bool IncludeFirmware { get; set; }
public bool IncludeSettings { get; set; }
}
}
|