twitch-agent/TwitchEventSub/Types/ChannelPoints/Image.cs

11 lines
236 B
C#
Raw Permalink Normal View History

using System;
namespace TwitchEventSub.Types
{
public class Image
{
public Uri url_1x { get; set; } //URL for the image at 1x size.
public Uri url_2x { get; set; }
public Uri url_4x { get; set; }
}
}