namespace Finch.Raven; public class InterceptorResult { /// /// Autoset. Hash used to match interceptors in order to correctly pass parameters /// internal string InterceptorHash { get; set; } /// /// Prevent further interceptors from running for this operation (only valid for the current interception type, e.g. Update/Created/Purge/...) /// public bool Continue { get; set; } = true; /// /// Set a result. This will prevent further execution of the operation and cancels all subsequent interceptors /// public Result Result { get; set; } }