namespace Emby.Naming.Video
{
    /// 
    /// Data holder class for 3D format rule.
    /// 
    public class Format3DRule
    {
        /// 
        /// Initializes a new instance of the  class.
        /// 
        /// Token.
        /// Token present before current token.
        public Format3DRule(string token, string? precedingToken = null)
        {
            Token = token;
            PrecedingToken = precedingToken;
        }
        /// 
        /// Gets or sets the token.
        /// 
        /// The token.
        public string Token { get; set; }
        /// 
        /// Gets or sets the preceding token.
        /// 
        /// The preceding token.
        public string? PrecedingToken { get; set; }
    }
}