25 lines
449 B
C#
25 lines
449 B
C#
|
using Maki.Structures.Embeds;
|
|||
|
|
|||
|
namespace Maki
|
|||
|
{
|
|||
|
public class DiscordEmbedImage
|
|||
|
{
|
|||
|
public string Url;
|
|||
|
|
|||
|
internal EmbedImage ToStruct()
|
|||
|
{
|
|||
|
return new EmbedImage()
|
|||
|
{
|
|||
|
Url = Url,
|
|||
|
};
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// An alias of DiscordEmbedImage, for aesthetic reasons
|
|||
|
/// </summary>
|
|||
|
public class DiscordEmbedThumbnail : DiscordEmbedImage
|
|||
|
{
|
|||
|
}
|
|||
|
}
|