mirror of
https://github.com/RPCS3/discord-bot.git
synced 2026-01-31 01:25:22 +01:00
24 lines
431 B
C#
24 lines
431 B
C#
namespace MediafireClient.POCOs;
|
|
#nullable disable
|
|
|
|
public sealed class LinksResult
|
|
{
|
|
public LinksResponse Response;
|
|
}
|
|
|
|
public sealed class LinksResponse
|
|
{
|
|
public string Action;
|
|
public string Result;
|
|
public string CurrentApiVersion;
|
|
public Link[] Links;
|
|
}
|
|
|
|
public sealed class Link
|
|
{
|
|
public string Quickkey;
|
|
public string NormalDownload;
|
|
public string DirectDownload;
|
|
}
|
|
|
|
#nullable restore |