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

10 lines
219 B
C#
Raw Normal View History

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