2019-12-13 19:11:37 +00:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
2018-09-12 17:26:21 +00:00
|
|
|
namespace Emby.Naming.Video
|
|
|
|
{
|
|
|
|
public class Format3DRule
|
|
|
|
{
|
|
|
|
/// <summary>
|
2020-03-25 16:53:03 +00:00
|
|
|
/// Gets or sets the token.
|
2018-09-12 17:26:21 +00:00
|
|
|
/// </summary>
|
|
|
|
/// <value>The token.</value>
|
|
|
|
public string Token { get; set; }
|
2019-12-13 19:11:37 +00:00
|
|
|
|
2018-09-12 17:26:21 +00:00
|
|
|
/// <summary>
|
2020-03-25 16:53:03 +00:00
|
|
|
/// Gets or sets the preceeding token.
|
2018-09-12 17:26:21 +00:00
|
|
|
/// </summary>
|
|
|
|
/// <value>The preceeding token.</value>
|
|
|
|
public string PreceedingToken { get; set; }
|
|
|
|
}
|
|
|
|
}
|