using Azaion.Common.Database; using MediatR; namespace Azaion.Common.Events; public class AnnotationsDeletedEvent(List annotations) : INotification { public List Annotations { get; set; } = annotations; } public class AnnotationAddedEvent(Annotation annotation) : INotification { public Annotation Annotation { get; set; } = annotation; }