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