mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 22:56:29 +00:00
11 lines
390 B
C#
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; }
|
|
} |