namespace FileShare_Services.Services.FileLibrary { public interface IVideoThumbnailService { Task GenerateThumbnailAsync(int libraryRootId, string videoPath, CancellationToken ct = default); string GetAbsolutePath(string relativePath); double? GetVideoDuration(string videoPath); } public sealed record GeneratedThumbnail(string RelativePath, string ContentType); }