mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 10:06:30 +00:00
d130e6fdcf
fix duration bug
10 lines
334 B
C#
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; }
|
|
} |