Files
annotations/Azaion.Annotator/DTO/MediaFileInfo.cs
T
Oleksandr Bezdieniezhnykh a81a6f881d add image editing
2024-08-07 13:22:17 +03:00

11 lines
390 B
C#

namespace Azaion.Annotator.DTO;
public class MediaFileInfo
{
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; }
public MediaTypes MediaType { get; set; }
}