mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-10 16:08:25 +01:00
11 lines
191 B
C#
11 lines
191 B
C#
|
using LightTube.Database;
|
||
|
|
||
|
namespace LightTube.Contexts
|
||
|
{
|
||
|
public class FeedContext : BaseContext
|
||
|
{
|
||
|
public LTChannel[] Channels;
|
||
|
public FeedVideo[] Videos;
|
||
|
public string RssToken;
|
||
|
}
|
||
|
}
|