using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tango.PPC.Common.BackupRestore { /// /// Represents a backup settings. /// public class BackupSettings { /// /// Gets or sets the backup mode. /// public BackupMode Mode { get; set; } } }