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 PageApiUrls
|
|
|
|
|
{
|
|
|
|
|
public Uri Summary { get; set; }
|
|
|
|
|
public Uri Metadata { get; set; }
|
|
|
|
|
public Uri References { get; set; }
|
|
|
|
|
public Uri Media { get; set; }
|
|
|
|
|
public Uri EditHtml { get; set; }
|
|
|
|
|
public Uri TalkPageHtml { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|