using Azaion.Common.Database; using MediatR; namespace Azaion.Common.Events; public class AnnotationsDeletedEvent(List annotationNames, bool fromQueue = false) : INotification { public List AnnotationNames { get; set; } = annotationNames; public bool FromQueue { get; set; } = fromQueue; } public class AnnotationAddedEvent(Annotation annotation) : INotification { public Annotation Annotation { get; set; } = annotation; }