jellyfin/Emby.Naming/Video/Format3DResult.cs

37 lines
1007 B
C#
Raw Normal View History

using System.Collections.Generic;
2018-09-12 13:26:21 -04:00
namespace Emby.Naming.Video
{
2020-11-10 13:23:10 -05:00
/// <summary>
/// Helper object to return data from <see cref="Format3DParser"/>.
/// </summary>
2018-09-12 13:26:21 -04:00
public class Format3DResult
{
2020-11-10 13:23:10 -05:00
/// <summary>
/// Initializes a new instance of the <see cref="Format3DResult"/> class.
/// </summary>
2019-05-10 14:37:42 -04:00
public Format3DResult()
{
Tokens = new List<string>();
}
2018-09-12 13:26:21 -04: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 14:37:42 -04:00
2018-09-12 13:26:21 -04:00
/// <summary>
/// Gets or sets the format3 d.
/// </summary>
/// <value>The format3 d.</value>
2020-11-01 04:47:31 -05:00
public string? Format3D { get; set; }
2019-05-10 14:37:42 -04:00
2018-09-12 13:26:21 -04:00
/// <summary>
/// Gets or sets the tokens.
/// </summary>
/// <value>The tokens.</value>
public List<string> Tokens { get; set; }
}
}