diff options
author | sr55 <[email protected]> | 2018-08-09 20:33:47 +0100 |
---|---|---|
committer | sr55 <[email protected]> | 2018-08-09 20:33:47 +0100 |
commit | 008d6e131f285c71d798e55a8b8af3c3689e9c6f (patch) | |
tree | b4c82f81cdd53f735011f18db74bac99f2f355fc /win/CS/HandBrakeWPF/Services/Scan | |
parent | 5fddd0b27f16d01efecfe76a92a695245d88cbcc (diff) |
WinGui: Cleanup of some unneeded references across the projects.
Diffstat (limited to 'win/CS/HandBrakeWPF/Services/Scan')
-rw-r--r-- | win/CS/HandBrakeWPF/Services/Scan/Model/Source.cs | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/win/CS/HandBrakeWPF/Services/Scan/Model/Source.cs b/win/CS/HandBrakeWPF/Services/Scan/Model/Source.cs index b8e3bcdaf..dcdb329df 100644 --- a/win/CS/HandBrakeWPF/Services/Scan/Model/Source.cs +++ b/win/CS/HandBrakeWPF/Services/Scan/Model/Source.cs @@ -10,13 +10,11 @@ namespace HandBrakeWPF.Services.Scan.Model { using System.Collections.Generic; - using System.Runtime.Serialization; using System.Xml.Serialization; /// <summary> /// An object representing a scanned DVD /// </summary> - [DataContract] public class Source { /// <summary> @@ -32,13 +30,11 @@ namespace HandBrakeWPF.Services.Scan.Model /// Gets or sets ScanPath. /// The Path used by the Scan Service. /// </summary> - [DataMember] public string ScanPath { get; set; } /// <summary> /// Gets or sets Titles. A list of titles from the source /// </summary> - [DataMember] [XmlIgnore] public List<Title> Titles { get; set; } |