Files
annotations/Windows/Azaion.Annotator/DTO/VideoFileInfo.cs
T

8 lines
213 B
C#

namespace Azaion.Annotator.DTO;
public class VideoFileInfo
{
public string Name { get; set; } = null!;
public string Path { get; set; } = null!;
public TimeSpan Duration { get; set; }
}