mirror of
https://github.com/azaion/annotations.git
synced 2026-04-23 00:06:31 +00:00
14 lines
245 B
C#
14 lines
245 B
C#
namespace Azaion.Annotator.DTO;
|
|
|
|
public enum PlaybackControlEnum
|
|
{
|
|
None = 0,
|
|
Play = 1,
|
|
Pause = 2,
|
|
Stop = 3,
|
|
PreviousFrame = 4,
|
|
NextFrame = 5,
|
|
SaveAnnotations = 6,
|
|
RemoveSelectedAnns = 7,
|
|
RemoveAllAnns = 8
|
|
} |