mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 12:06:31 +00:00
48c9ccbfda
refactor, renames
8 lines
183 B
C#
8 lines
183 B
C#
using MediatR;
|
|
|
|
namespace Azaion.Common.DTO;
|
|
|
|
public class AnnotationCreatedEvent(Annotation annotation) : INotification
|
|
{
|
|
public Annotation Annotation { get; } = annotation;
|
|
} |