make resizable panels

fix duration bug
This commit is contained in:
Oleksandr Bezdieniezhnykh
2024-07-22 18:01:54 +03:00
parent f452059407
commit d130e6fdcf
4 changed files with 41 additions and 18 deletions
+5 -4
View File
@@ -2,8 +2,9 @@
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; }
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; }
}