25 lines
575 B
C#
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();
|
|
}
|
|
}
|
|
}
|