1.0-dev10 (Code cleaning)
This commit is contained in:
8
VDownload.Core/EventArgs/PlaylistSearchEventArgs.cs
Normal file
8
VDownload.Core/EventArgs/PlaylistSearchEventArgs.cs
Normal file
@@ -0,0 +1,8 @@
|
||||
namespace VDownload.Core.EventArgs
|
||||
{
|
||||
public class PlaylistSearchEventArgs : System.EventArgs
|
||||
{
|
||||
public string Phrase { get; set; }
|
||||
public int Count { get; set; }
|
||||
}
|
||||
}
|
||||
20
VDownload.Core/EventArgs/VideoAddEventArgs.cs
Normal file
20
VDownload.Core/EventArgs/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.EventArgs
|
||||
{
|
||||
public class VideoAddEventArgs : System.EventArgs
|
||||
{
|
||||
public IVideoService VideoService { get; set; }
|
||||
public MediaType MediaType { get; set; }
|
||||
public IBaseStream 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; }
|
||||
}
|
||||
}
|
||||
7
VDownload.Core/EventArgs/VideoSearchEventArgs.cs
Normal file
7
VDownload.Core/EventArgs/VideoSearchEventArgs.cs
Normal file
@@ -0,0 +1,7 @@
|
||||
namespace VDownload.Core.EventArgs
|
||||
{
|
||||
public class VideoSearchEventArgs : System.EventArgs
|
||||
{
|
||||
public string Phrase { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user