1.0-dev14 (Playlist adding added)

This commit is contained in:
2022-03-05 02:39:37 +01:00
Unverified
parent 4f33ed55f6
commit d32c23f493
23 changed files with 1267 additions and 43 deletions

View 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; }
}
}