1.0-dev6 (Option bar added and code cleaned)

This commit is contained in:
2022-02-19 01:38:37 +01:00
Unverified
parent 3c274ff4fc
commit 96a7953500
51 changed files with 856 additions and 423 deletions

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