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