Files
annotations/Azaion.Common/Events/AnnotationsDeletedEvent.cs
T
Alex Bezdieniezhnykh ae2c62350a remove fix, todo: test
2025-01-03 18:32:56 +02:00

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;
}