geekbot/Geekbot.net/Lib/Dtos/FourChanDto.cs

21 lines
456 B
C#
Raw Normal View History

2017-05-07 22:45:16 +02:00
using System.Collections.Generic;
namespace Geekbot.net.Lib.Dtos
{
class FourChanDto
{
public class BoardList
{
public List<Board> Boards { get; set; }
}
public class Board
{
public string board { get; set; }
public string title { get; set; }
public string ws_board { get; set; }
public string meta_description { get; set; }
}
}
}