2022-03-09 23:43:51 +01:00
|
|
|
|
using VDownload.Core.Interfaces;
|
|
|
|
|
|
|
|
|
|
|
|
namespace VDownload.Core.EventArgs
|
|
|
|
|
|
{
|
|
|
|
|
|
public class PlaylistSearchSuccessedEventArgs : System.EventArgs
|
|
|
|
|
|
{
|
2022-05-11 20:50:50 +02:00
|
|
|
|
#region CONSTRUCTORS
|
|
|
|
|
|
|
|
|
|
|
|
public PlaylistSearchSuccessedEventArgs(IPlaylist playlist)
|
|
|
|
|
|
{
|
|
|
|
|
|
Playlist = playlist;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#region PROPERTIES
|
|
|
|
|
|
|
|
|
|
|
|
public IPlaylist Playlist { get; private set; }
|
|
|
|
|
|
|
|
|
|
|
|
#endregion
|
2022-03-09 23:43:51 +01:00
|
|
|
|
}
|
|
|
|
|
|
}
|