jellyfin/Emby.Naming/Video/Format3DResult.cs

31 lines
770 B
C#
Raw Normal View History

using System.Collections.Generic;
2018-09-12 19:26:21 +02:00
namespace Emby.Naming.Video
{
public class Format3DResult
{
2019-05-10 20:37:42 +02:00
public Format3DResult()
{
Tokens = new List<string>();
}
2018-09-12 19:26:21 +02:00
/// <summary>
/// Gets or sets a value indicating whether [is3 d].
/// </summary>
/// <value><c>true</c> if [is3 d]; otherwise, <c>false</c>.</value>
public bool Is3D { get; set; }
2019-05-10 20:37:42 +02:00
2018-09-12 19:26:21 +02:00
/// <summary>
/// Gets or sets the format3 d.
/// </summary>
/// <value>The format3 d.</value>
public string Format3D { get; set; }
2019-05-10 20:37:42 +02:00
2018-09-12 19:26:21 +02:00
/// <summary>
/// Gets or sets the tokens.
/// </summary>
/// <value>The tokens.</value>
public List<string> Tokens { get; set; }
}
}