Files
DiscordChatExporter/DiscordChatExporter.Core.Models/EmbedImage.cs
Alexey Golub e5a2852165 Use nullable
2019-11-13 19:19:36 +02:00

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;
}
}
}