mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 09:46:30 +00:00
288a34e992
differentiate already processed videos
9 lines
264 B
C#
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; }
|
|
} |