using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Tango.Core; namespace Tango.PPC.Common.BackupRestore { public class RestoreSettings : ExtendedObject { private bool _allowDeleteJobs; public bool AllowDeleteJobs { get { return _allowDeleteJobs; } set { _allowDeleteJobs = value; RaisePropertyChangedAuto(); } } private bool _overwriteExistingJobs; public bool OverwriteExistingJobs { get { return _overwriteExistingJobs; } set { _overwriteExistingJobs = value; RaisePropertyChangedAuto(); } } public RestoreSettings() { OverwriteExistingJobs = true; } } }