jellyfin/Emby.Naming/Video/VideoInfo.cs

54 lines
1.5 KiB
C#
Raw Normal View History

2020-01-22 16:18:56 -05:00
using System;
using System.Collections.Generic;
2021-12-07 09:18:17 -05:00
using MediaBrowser.Model.Entities;
2018-09-12 13:26:21 -04:00
namespace Emby.Naming.Video
{
/// <summary>
2019-10-25 06:47:20 -04:00
/// Represents a complete video, including all parts and subtitles.
2018-09-12 13:26:21 -04:00
/// </summary>
public class VideoInfo
{
/// <summary>
/// Initializes a new instance of the <see cref="VideoInfo" /> class.
/// </summary>
2020-01-22 16:18:56 -05:00
/// <param name="name">The name.</param>
2020-11-01 04:47:31 -05:00
public VideoInfo(string? name)
{
2020-01-22 16:18:56 -05:00
Name = name;
Files = Array.Empty<VideoFileInfo>();
AlternateVersions = Array.Empty<VideoFileInfo>();
}
2018-09-12 13:26:21 -04:00
/// <summary>
/// Gets or sets the name.
/// </summary>
/// <value>The name.</value>
2020-11-01 04:47:31 -05:00
public string? Name { get; set; }
2019-05-10 14:37:42 -04:00
2018-09-12 13:26:21 -04:00
/// <summary>
/// Gets or sets the year.
/// </summary>
/// <value>The year.</value>
public int? Year { get; set; }
2019-05-10 14:37:42 -04:00
2018-09-12 13:26:21 -04:00
/// <summary>
/// Gets or sets the files.
/// </summary>
/// <value>The files.</value>
2020-01-22 16:18:56 -05:00
public IReadOnlyList<VideoFileInfo> Files { get; set; }
2019-05-10 14:37:42 -04:00
2018-09-12 13:26:21 -04:00
/// <summary>
/// Gets or sets the alternate versions.
/// </summary>
/// <value>The alternate versions.</value>
2020-01-22 16:18:56 -05:00
public IReadOnlyList<VideoFileInfo> AlternateVersions { get; set; }
2021-12-07 09:18:17 -05:00
/// <summary>
/// Gets or sets the extra type.
/// </summary>
public ExtraType? ExtraType { get; set; }
2018-09-12 13:26:21 -04:00
}
}