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; } public string FName => System.IO.Path.GetFileNameWithoutExtension(Name).Replace(" ", ""); }