mirror of
https://github.com/sphildreth/roadie
synced 2024-11-23 20:53:12 +00:00
19 lines
No EOL
334 B
C#
19 lines
No EOL
334 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Roadie.Library.SearchEngines.MetaData.Wikipedia
|
|
{
|
|
public class api
|
|
{
|
|
public query query { get; set; }
|
|
}
|
|
|
|
public class page
|
|
{
|
|
public string extract { get; set; }
|
|
}
|
|
|
|
public class query
|
|
{
|
|
public List<page> pages { get; set; }
|
|
}
|
|
} |