namespace UnityEngine.Timeline
{
    /// 
    /// Implement this interface to change the behaviour of an INotification.
    /// 
    /// 
    /// This interface must be implemented along with  to modify the default behaviour of a notification.
    /// 
    /// 
    public interface INotificationOptionProvider
    {
        /// 
        /// The flags that change the triggering behaviour.
        /// 
        NotificationFlags flags { get; }
    }
}