// --------------------------------------------------------------------------------------------------------------------
//
// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
//
//
// An object representing a scanned DVD
//
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrake.ApplicationServices.Parsing
{
using System.Collections.Generic;
using System.Runtime.Serialization;
///
/// An object representing a scanned DVD
///
[DataContract]
public class Source
{
///
/// Initializes a new instance of the class.
/// Default constructor for this object
///
public Source()
{
Titles = new List
();
}
///
/// Gets or sets ScanPath.
/// The Path used by the Scan Service.
///
[DataMember]
public string ScanPath { get; set; }
///
/// Gets or sets Titles. A list of titles from the source
///
[DataMember]
public List Titles { get; set; }
///
/// Copy this Source to another Source Model
///
///
/// The source.
///
public void CopyTo(Source source)
{
source.Titles = this.Titles;
source.ScanPath = this.ScanPath;
}
}
}