Files
VDownload/VDownload.Core/EventArgs/VideoAddEventArgs.cs

22 lines
684 B
C#
Raw Normal View History

2022-02-26 14:32:34 +01:00
using System;
using VDownload.Core.Enums;
using VDownload.Core.Interfaces;
using VDownload.Core.Objects;
using Windows.Storage;
2022-03-02 22:13:28 +01:00
namespace VDownload.Core.EventArgs
2022-02-26 14:32:34 +01:00
{
2022-03-02 22:13:28 +01:00
public class VideoAddEventArgs : System.EventArgs
2022-02-26 14:32:34 +01:00
{
public IVideoService VideoService { get; set; }
public MediaType MediaType { get; set; }
2022-03-02 22:13:28 +01:00
public IBaseStream Stream { get; set; }
2022-02-26 14:32:34 +01:00
public TimeSpan TrimStart { get; set; }
public TimeSpan TrimEnd { get; set; }
public string Filename { get; set; }
public MediaFileExtension Extension { get; set; }
public StorageFolder Location { get; set; }
public double Schedule { get; set; }
2022-02-26 14:32:34 +01:00
}
}