mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 21:46:30 +00:00
14 lines
413 B
C#
14 lines
413 B
C#
using MediatR;
|
|
|
|
namespace Azaion.Common.DTO;
|
|
|
|
public class AnnotatorControlEvent(PlaybackControlEnum playbackControlEnum) : INotification
|
|
{
|
|
public PlaybackControlEnum PlaybackControl { get; set; } = playbackControlEnum;
|
|
}
|
|
|
|
public class DatasetExplorerControlEvent(PlaybackControlEnum playbackControlEnum) : INotification
|
|
{
|
|
public PlaybackControlEnum PlaybackControl { get; set; } = playbackControlEnum;
|
|
}
|