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

9 lines
216 B
C#

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