1
0
mirror of https://github.com/chylex/Backup-Essentials.git synced 2025-01-08 11:42:45 +01:00

Forgot to push update to BackupLocation

This commit is contained in:
chylex 2015-04-04 22:05:24 +02:00
parent 16abb2082f
commit a139e5ea30

View File

@ -7,5 +7,14 @@ namespace BackupEssentials.Backup{
public class BackupLocation{
public string Name { get; set; }
public string Directory { get; set; }
public void Set(BackupLocation NewData){
this.Name = NewData.Name;
this.Directory = NewData.Directory;
}
public BackupLocation Clone(){
return new BackupLocation(){ Name = this.Name, Directory = this.Directory };
}
}
}