using SkiaSharp; using System.Collections.Generic; namespace TwitchDownloaderCore.TwitchObjects { public class UpdateFrame { public SKBitmap Image { get; set; } public List Comments { get; set; } = new List(); public int CommentIndex { get; set; } } }