NadekoBot/NadekoBot.Core/Modules/Searches/Common/NovelData.cs

21 lines
561 B
C#
Raw Normal View History

2017-11-01 13:01:42 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace NadekoBot.Modules.Searches.Common
{
2017-11-02 17:22:17 +00:00
public class NovelResult
2017-11-01 13:01:42 +00:00
{
public string Description { get; set; }
public string Title { get; set; }
public string Link { get; set; }
public string ImageUrl { get; set; }
public string[] Authors { get; set; }
public string Status { get; set; }
public string[] Genres { get; set; }
public string Score { get; set; }
}
}