You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
933 B
32 lines
933 B
namespace Emby.Naming.Video
|
|
{
|
|
/// <summary>
|
|
/// Data holder class for 3D format rule.
|
|
/// </summary>
|
|
public class Format3DRule
|
|
{
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="Format3DRule"/> class.
|
|
/// </summary>
|
|
/// <param name="token">Token.</param>
|
|
/// <param name="precedingToken">Token present before current token.</param>
|
|
public Format3DRule(string token, string? precedingToken = null)
|
|
{
|
|
Token = token;
|
|
PrecedingToken = precedingToken;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets or sets the token.
|
|
/// </summary>
|
|
/// <value>The token.</value>
|
|
public string Token { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the preceding token.
|
|
/// </summary>
|
|
/// <value>The preceding token.</value>
|
|
public string? PrecedingToken { get; set; }
|
|
}
|
|
}
|