Files
DiscordChatExporter/DiscordChatExporter.Core.Models/EmbedImage.cs
2019-04-10 23:45:21 +03:00

20 lines
456 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;
}
}
}