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:
parent
16abb2082f
commit
a139e5ea30
@ -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 };
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user