mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 21:46:30 +00:00
48c9ccbfda
refactor, renames
9 lines
230 B
C#
9 lines
230 B
C#
using Azaion.Common.DTO;
|
|
using MediatR;
|
|
|
|
namespace Azaion.Annotator.DTO;
|
|
|
|
public class AnnClassSelectedEvent(DetectionClass detectionClass) : INotification
|
|
{
|
|
public DetectionClass DetectionClass { get; } = detectionClass;
|
|
} |