2022-03-09 23:43:51 +01:00
|
|
|
|
using VDownload.Core.Interfaces;
|
|
|
|
|
|
|
|
|
|
|
|
namespace VDownload.Core.EventArgs
|
|
|
|
|
|
{
|
|
|
|
|
|
public class VideoSearchSuccessedEventArgs : System.EventArgs
|
|
|
|
|
|
{
|
2022-05-11 20:50:50 +02:00
|
|
|
|
#region CONSTRUCTORS
|
|
|
|
|
|
|
|
|
|
|
|
public VideoSearchSuccessedEventArgs(IVideo video)
|
|
|
|
|
|
{
|
|
|
|
|
|
Video = video;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#region PROPERTIES
|
|
|
|
|
|
|
2022-05-05 15:06:10 +02:00
|
|
|
|
public IVideo Video { get; set; }
|
2022-05-11 20:50:50 +02:00
|
|
|
|
|
|
|
|
|
|
#endregion
|
2022-03-09 23:43:51 +01:00
|
|
|
|
}
|
|
|
|
|
|
}
|