1.0-dev6 (Option bar added and code cleaned)
This commit is contained in:
24
VDownload.Core/Interfaces/IPlaylistService.cs
Normal file
24
VDownload.Core/Interfaces/IPlaylistService.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace VDownload.Core.Interfaces
|
||||
{
|
||||
internal interface IPlaylistService
|
||||
{
|
||||
#region PROPERTIES
|
||||
|
||||
string ID { get; }
|
||||
string Name { get; }
|
||||
|
||||
#endregion
|
||||
|
||||
|
||||
|
||||
#region METHODS
|
||||
|
||||
Task GetMetadataAsync();
|
||||
|
||||
Task GetVideosAsync(int numberOfVideos);
|
||||
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user