mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 17:28:27 -04:00
15 lines
444 B
C#
15 lines
444 B
C#
namespace NadekoBot.Modules.Searches.Common
|
|
{
|
|
public class NovelResult
|
|
{
|
|
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; }
|
|
}
|
|
}
|