mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-04 20:57:49 +00:00
14 lines
232 B
C#
14 lines
232 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Roblox.RSS
|
|
{
|
|
public interface IChannel
|
|
{
|
|
string Title { get; }
|
|
string Description { get; }
|
|
IEnumerable<IItem> GetItems();
|
|
IImage Image { get; }
|
|
bool Complete { get; }
|
|
}
|
|
}
|