diff options
author | sr55 <[email protected]> | 2011-11-13 18:17:56 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2011-11-13 18:17:56 +0000 |
commit | b9001e7ebc4ad8e04e12423169258d67f6e251e8 (patch) | |
tree | 61c480f4a227ca8b49bacb35f40bf64b14f1f0a9 /win/CS/HandBrake.ApplicationServices/Parsing | |
parent | ab0fc16e89d125672d8adf3c724cb66af883174f (diff) |
WinGui: (WPF) Further work on the WPF UI and associated servies and utilities. Started working on wiring up the ability to encode.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4347 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrake.ApplicationServices/Parsing')
-rw-r--r-- | win/CS/HandBrake.ApplicationServices/Parsing/Source.cs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/win/CS/HandBrake.ApplicationServices/Parsing/Source.cs b/win/CS/HandBrake.ApplicationServices/Parsing/Source.cs index a79da7040..696063f0f 100644 --- a/win/CS/HandBrake.ApplicationServices/Parsing/Source.cs +++ b/win/CS/HandBrake.ApplicationServices/Parsing/Source.cs @@ -22,6 +22,12 @@ namespace HandBrake.ApplicationServices.Parsing }
/// <summary>
+ /// Gets or sets ScanPath.
+ /// The Path used by the Scan Service.
+ /// </summary>
+ public string ScanPath { get; set; }
+
+ /// <summary>
/// Gets or sets Titles. A list of titles from the source
/// </summary>
public List<Title> Titles { get; set; }
@@ -59,6 +65,7 @@ namespace HandBrake.ApplicationServices.Parsing public void CopyTo(Source source)
{
source.Titles = this.Titles;
+ source.ScanPath = this.ScanPath;
}
}
}
\ No newline at end of file |