mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-05 21:27:48 +00:00
17 lines
193 B
C#
17 lines
193 B
C#
using System;
|
|
|
|
namespace Roblox.RSS;
|
|
|
|
public interface IItem
|
|
{
|
|
string Title { get; }
|
|
|
|
DateTime PubDate { get; }
|
|
|
|
string Description { get; }
|
|
|
|
string Link { get; }
|
|
|
|
IImage Image { get; }
|
|
}
|