mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 21:46:30 +00:00
8 lines
210 B
C#
8 lines
210 B
C#
using MediatR;
|
|
|
|
namespace Azaion.Annotator.DTO;
|
|
|
|
public class AnnClassSelectedEvent(AnnotationClass annotationClass) : INotification
|
|
{
|
|
public AnnotationClass AnnotationClass { get; } = annotationClass;
|
|
} |