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