jellyfin-server/Emby.Naming/Video/Format3DResult.cs

37 lines
1007 B
C#
Raw Normal View History

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