Files
VDownload/VDownload.Core/EventArgs/PlaylistSearchSuccessedEventArgs.cs

10 lines
212 B
C#
Raw Normal View History

using VDownload.Core.Interfaces;
namespace VDownload.Core.EventArgs
{
public class PlaylistSearchSuccessedEventArgs : System.EventArgs
{
2022-05-05 15:06:10 +02:00
public IPlaylist PlaylistService { get; set; }
}
}