Files
VDownload/VDownload.Core/Interfaces/IPlaylistService.cs

25 lines
361 B
C#

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