25 lines
429 B
C#
25 lines
429 B
C#
|
|
using VDownload.Core.Interfaces;
|
|||
|
|
|
|||
|
|
namespace VDownload.Core.EventArgs
|
|||
|
|
{
|
|||
|
|
public class SubscriptionLoadSuccessedEventArgs : System.EventArgs
|
|||
|
|
{
|
|||
|
|
#region CONSTRUCTORS
|
|||
|
|
|
|||
|
|
public SubscriptionLoadSuccessedEventArgs(IVideo[] videos)
|
|||
|
|
{
|
|||
|
|
Videos = videos;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
#endregion
|
|||
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
#region PROPERTIES
|
|||
|
|
|
|||
|
|
public IVideo[] Videos { get; private set; }
|
|||
|
|
|
|||
|
|
#endregion
|
|||
|
|
}
|
|||
|
|
}
|