mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-12 10:18:27 -04:00
25 lines
514 B
C#
25 lines
514 B
C#
namespace NadekoBot.Modules.Searches.Common
|
|
{
|
|
public class E621Object
|
|
{
|
|
public class FileData
|
|
{
|
|
public string Url { get; set; }
|
|
}
|
|
|
|
public class TagData
|
|
{
|
|
public string[] General { get; set; }
|
|
}
|
|
|
|
public class ScoreData
|
|
{
|
|
public string Total { get; set; }
|
|
}
|
|
|
|
public FileData File { get; set; }
|
|
public TagData Tags { get; set; }
|
|
public ScoreData Score { get; set; }
|
|
}
|
|
}
|