Files
annotations/Azaion.Annotator/DTO/VideoFileInfo.cs
T
Oleksandr Bezdieniezhnykh dd0ece36f2 I like it move it move it
2024-05-18 17:51:38 +03:00

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; }
}