Files
VDownload/VDownload.Common/Playlist.cs
2024-02-13 02:59:40 +01:00

25 lines
575 B
C#

using CommunityToolkit.Mvvm.ComponentModel;
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using VDownload.Common.Models;
namespace VDownload.Common
{
public abstract class Playlist : ObservableObject, IEnumerable<Video>
{
public IEnumerator<Video> GetEnumerator()
{
throw new NotImplementedException();
}
IEnumerator IEnumerable.GetEnumerator()
{
throw new NotImplementedException();
}
}
}