mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 22:56:29 +00:00
8b94837f18
fixes add visual validation border and validate functionality
20 lines
368 B
C#
20 lines
368 B
C#
namespace Azaion.Common.DTO;
|
|
|
|
public enum PlaybackControlEnum
|
|
{
|
|
None = 0,
|
|
Play = 1,
|
|
Pause = 2,
|
|
Stop = 3,
|
|
PreviousFrame = 4,
|
|
NextFrame = 5,
|
|
SaveAnnotations = 6,
|
|
RemoveSelectedAnns = 7,
|
|
RemoveAllAnns = 8,
|
|
TurnOffVolume = 9,
|
|
TurnOnVolume = 10,
|
|
Previous = 11,
|
|
Next = 12,
|
|
Close = 13,
|
|
ValidateAnnotations = 15
|
|
} |