mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 22:26:31 +00:00
9 lines
237 B
C#
9 lines
237 B
C#
using Azaion.Common.Database;
|
|
using MediatR;
|
|
|
|
namespace Azaion.Common.Events;
|
|
|
|
public class AnnotationsDeletedEvent(List<Annotation> annotations) : INotification
|
|
{
|
|
public List<Annotation> Annotations { get; set; } = annotations;
|
|
} |