12 lines
227 B
C#
12 lines
227 B
C#
|
using System;
|
|||
|
|
|||
|
namespace WikipediaApi.Page
|
|||
|
{
|
|||
|
public class PageImage
|
|||
|
{
|
|||
|
public Uri Source { get; set; }
|
|||
|
public int Width { get; set; }
|
|||
|
public int Height { get; set; }
|
|||
|
|
|||
|
}
|
|||
|
}
|