10 lines
219 B
C#
10 lines
219 B
C#
using VDownload.Core.Interfaces;
|
|
|
|
namespace VDownload.Core.EventArgs
|
|
{
|
|
public class PlaylistSearchSuccessedEventArgs : System.EventArgs
|
|
{
|
|
public IPlaylistService PlaylistService { get; set; }
|
|
}
|
|
}
|