25 lines
361 B
C#
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
|
|
}
|
|
}
|