mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-05 05:07:48 +00:00
10 lines
124 B
C#
10 lines
124 B
C#
namespace Roblox.RSS
|
|
{
|
|
public interface IImage
|
|
{
|
|
int Width { get; }
|
|
int Height { get; }
|
|
string Url { get; }
|
|
}
|
|
}
|