1
Fork 0
poke/core/LightTube/Contexts/PlaylistsContext.cs
2022-08-05 22:33:38 +03:00

11 lines
No EOL
215 B
C#

using System.Collections.Generic;
using InnerTube.Models;
using LightTube.Database;
namespace LightTube.Contexts
{
public class PlaylistsContext : BaseContext
{
public IEnumerable<LTPlaylist> Playlists;
}
}