mirror of
https://codeberg.org/ashley/poke
synced 2025-04-05 17:17:59 +00:00
11 lines
215 B
C#
11 lines
215 B
C#
using System.Collections.Generic;
|
|
using InnerTube.Models;
|
|
using LightTube.Database;
|
|
|
|
namespace LightTube.Contexts
|
|
{
|
|
public class PlaylistsContext : BaseContext
|
|
{
|
|
public IEnumerable<LTPlaylist> Playlists;
|
|
}
|
|
} |