From 15cf9a6606ad6bca587ab1b9788641206dd0361b Mon Sep 17 00:00:00 2001 From: Mike Nolan Date: Thu, 16 Feb 2023 11:44:34 -0600 Subject: [PATCH] Fix TYTDClient for blazor --- Tesses.YouTubeDownloader/IBlazorContext.cs | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 Tesses.YouTubeDownloader/IBlazorContext.cs diff --git a/Tesses.YouTubeDownloader/IBlazorContext.cs b/Tesses.YouTubeDownloader/IBlazorContext.cs new file mode 100644 index 0000000..c011789 --- /dev/null +++ b/Tesses.YouTubeDownloader/IBlazorContext.cs @@ -0,0 +1,13 @@ +using System; + +namespace Tesses.YouTubeDownloader +{ + public interface IBlazorContext + { + public void StartEvents(Action evt); + + public void StopEvents(); + + + } +} \ No newline at end of file