jellyfin/Emby.Naming/Video/VideoInfo.cs

54 lines
1.5 KiB
C#
Raw Normal View History

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