mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-17 02:49:05 -07:00
18 lines
432 B
C#
18 lines
432 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; }
|
|
}
|
|
}
|