mirror of
https://github.com/unclshura/splitter.git
synced 2026-06-21 16:12:01 +00:00
10 lines
206 B
C#
10 lines
206 B
C#
using System.Threading.Tasks;
|
|
using Avalonia.Media.Imaging;
|
|
|
|
namespace Splitter_UI.Services;
|
|
|
|
public interface IThumbnailService
|
|
{
|
|
Task<Bitmap?> CreateThumbnailAsync(string file, VideoInfo probe);
|
|
}
|