Files
annotations/Azaion.Annotator/DTO/VideoFileInfo.cs
T
Oleksandr Bezdieniezhnykh d130e6fdcf make resizable panels
fix duration bug
2024-07-22 18:01:54 +03:00

10 lines
334 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 string DurationStr => $"{Duration:h\\:mm\\:ss}";
public bool HasAnnotations { get; set; }
}