Files
VDownload/VDownload.Core/EventArgs/VideoSearchSuccessedEventArgs.cs

25 lines
403 B
C#
Raw Normal View History

using VDownload.Core.Interfaces;
namespace VDownload.Core.EventArgs
{
public class VideoSearchSuccessedEventArgs : System.EventArgs
{
#region CONSTRUCTORS
public VideoSearchSuccessedEventArgs(IVideo video)
{
Video = video;
}
#endregion
#region PROPERTIES
2022-05-05 15:06:10 +02:00
public IVideo Video { get; set; }
#endregion
}
}