mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-05 05:07:48 +00:00
18 lines
233 B
C#
18 lines
233 B
C#
namespace Roblox.RSS;
|
|
|
|
public class StandardFeedImage : IImage
|
|
{
|
|
private string url;
|
|
|
|
public int Width => 118;
|
|
|
|
public int Height => 31;
|
|
|
|
public string Url => url;
|
|
|
|
public StandardFeedImage(string url)
|
|
{
|
|
this.url = url;
|
|
}
|
|
}
|