Files
watrbx-game-engine/Client.LegacyAssemblies/Roblox.Common/RSS/IChannel.cs
T
2025-09-18 17:55:52 -04:00

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; }
}
}