Files
annotations/Azaion.Annotator/DTO/VideoFileInfo.cs
T
Oleksandr Bezdieniezhnykh 288a34e992 add results pane
differentiate already processed videos
2024-07-18 21:40:15 +03:00

9 lines
264 B
C#

namespace Azaion.Annotator.DTO;
public class VideoFileInfo
{
public string Name { get; set; } = null!;
public string Path { get; set; } = null!;
public TimeSpan Duration { get; set; }
public bool HasAnnotations { get; set; }
}