1.0-dev7 (Video adding panel added)
This commit is contained in:
20
VDownload.Core/EventArgsObjects/VideoAddEventArgs.cs
Normal file
20
VDownload.Core/EventArgsObjects/VideoAddEventArgs.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
using System;
|
||||
using VDownload.Core.Enums;
|
||||
using VDownload.Core.Interfaces;
|
||||
using VDownload.Core.Objects;
|
||||
using Windows.Storage;
|
||||
|
||||
namespace VDownload.Core.EventArgsObjects
|
||||
{
|
||||
public class VideoAddEventArgs : EventArgs
|
||||
{
|
||||
public IVideoService VideoService { get; set; }
|
||||
public MediaType MediaType { get; set; }
|
||||
public Stream Stream { get; set; }
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user