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

10 lines
219 B
C#

using VDownload.Core.Interfaces;
namespace VDownload.Core.EventArgs
{
public class PlaylistSearchSuccessedEventArgs : System.EventArgs
{
public IPlaylistService PlaylistService { get; set; }
}
}