using Azaion.Common.Database; using MediatR; namespace Azaion.Common.Events; public class AnnotationCreatedEvent(Annotation annotation) : INotification { public Annotation Annotation { get; } = annotation; }