2017-07-17 19:42:36 +00:00
|
|
|
namespace NadekoBot.Modules.Searches.Common
|
2016-02-29 17:28:16 +00:00
|
|
|
{
|
|
|
|
public class MangaResult
|
|
|
|
{
|
|
|
|
public int id;
|
|
|
|
public string publishing_status;
|
|
|
|
public string image_url_lge;
|
|
|
|
public string title_english;
|
|
|
|
public int total_chapters;
|
|
|
|
public int total_volumes;
|
|
|
|
public string description;
|
2016-11-29 20:24:49 +00:00
|
|
|
public string[] Genres;
|
2016-12-24 11:49:18 +00:00
|
|
|
public string average_score;
|
2016-11-29 20:24:49 +00:00
|
|
|
public string Link => "http://anilist.co/manga/" + id;
|
|
|
|
public string Synopsis => description?.Substring(0, description.Length > 500 ? 500 : description.Length) + "...";
|
2016-02-29 17:28:16 +00:00
|
|
|
}
|
|
|
|
}
|