poke/core/LightTube/Contexts/FeedContext.cs

11 lines
191 B
C#
Raw Normal View History

2022-08-05 21:33:38 +02:00
using LightTube.Database;
namespace LightTube.Contexts
{
public class FeedContext : BaseContext
{
public LTChannel[] Channels;
public FeedVideo[] Videos;
public string RssToken;
}
}