2018-04-28 01:01:48 +02:00
|
|
|
|
using System;
|
|
|
|
|
|
2020-08-08 21:09:27 +02:00
|
|
|
|
namespace Geekbot.net.Lib.WikipediaClient.Page
|
2018-04-28 01:01:48 +02:00
|
|
|
|
{
|
|
|
|
|
public class PageImage
|
|
|
|
|
{
|
|
|
|
|
public Uri Source { get; set; }
|
|
|
|
|
public int Width { get; set; }
|
|
|
|
|
public int Height { get; set; }
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|