mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2026-01-29 06:10:54 +00:00
20 lines
458 B
C#
20 lines
458 B
C#
namespace DiscordChatExporter.Core.Models
|
|
{
|
|
// https://discordapp.com/developers/docs/resources/channel#embed-object-embed-image-structure
|
|
|
|
public class EmbedImage
|
|
{
|
|
public string? Url { get; }
|
|
|
|
public int? Width { get; }
|
|
|
|
public int? Height { get; }
|
|
|
|
public EmbedImage(string? url, int? width, int? height)
|
|
{
|
|
Url = url;
|
|
Height = height;
|
|
Width = width;
|
|
}
|
|
}
|
|
} |