mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 08:46:31 +00:00
8b94837f18
fixes add visual validation border and validate functionality
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;
|
|
}
|