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

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