twitch-agent/TwitchEventSub/Types/ChannelPoints/Image.cs
Adam R. Grey 3f717df1d4 psuedoinitial
actually I had a previous repo but my dumb ass let the real appsettings sneak in
2021-10-24 01:13:07 -04:00

11 lines
236 B
C#

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