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