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