mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 22:26:31 +00:00
9 lines
216 B
C#
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;
|
|
} |