1.0-dev14 (Playlist adding added)
This commit is contained in:
23
VDownload.Core/EventArgs/PlaylistAddEventArgs.cs
Normal file
23
VDownload.Core/EventArgs/PlaylistAddEventArgs.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
using System;
|
||||
using VDownload.Core.Enums;
|
||||
using VDownload.Core.Interfaces;
|
||||
using VDownload.Core.Objects;
|
||||
using Windows.Storage;
|
||||
|
||||
namespace VDownload.Core.EventArgs
|
||||
{
|
||||
public class PlaylistAddEventArgs : System.EventArgs
|
||||
{
|
||||
public (
|
||||
IVideoService VideoService,
|
||||
MediaType MediaType,
|
||||
IBaseStream Stream,
|
||||
TimeSpan TrimStart,
|
||||
TimeSpan TrimEnd,
|
||||
string Filename,
|
||||
MediaFileExtension Extension,
|
||||
StorageFolder Location,
|
||||
double Schedule
|
||||
)[] Videos { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user