using System.Collections.Generic;
namespace Emby.Naming.Video
{
///
/// Represents a complete video, including all parts and subtitles.
///
public class VideoInfo
{
///
/// Initializes a new instance of the class.
///
public VideoInfo()
{
Files = new List();
Extras = new List();
AlternateVersions = new List();
}
///
/// Gets or sets the name.
///
/// The name.
public string Name { get; set; }
///
/// Gets or sets the year.
///
/// The year.
public int? Year { get; set; }
///
/// Gets or sets the files.
///
/// The files.
public List Files { get; set; }
///
/// Gets or sets the extras.
///
/// The extras.
public List Extras { get; set; }
///
/// Gets or sets the alternate versions.
///
/// The alternate versions.
public List AlternateVersions { get; set; }
}
}