17 lines
428 B
C#
17 lines
428 B
C#
|
namespace Emby.Naming.Video
|
||
|
{
|
||
|
public class Format3DRule
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Gets or sets the token.
|
||
|
/// </summary>
|
||
|
/// <value>The token.</value>
|
||
|
public string Token { get; set; }
|
||
|
/// <summary>
|
||
|
/// Gets or sets the preceeding token.
|
||
|
/// </summary>
|
||
|
/// <value>The preceeding token.</value>
|
||
|
public string PreceedingToken { get; set; }
|
||
|
}
|
||
|
}
|