Files
annotations/Azaion.Common/DTO/MediaFileInfo.cs
T
Alex Bezdieniezhnykh 60519461a1 rework to have only 1 exe!
2024-12-04 20:51:26 +02:00

11 lines
387 B
C#

namespace Azaion.Common.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; }
}