namespace Timelapse.Desktop; using SixLabors.ImageSharp; using SixLabors.ImageSharp.PixelFormats; public class NewFrameEventArgs : EventArgs { public NewFrameEventArgs(Image img) { Image=img; } public Image Image {get;internal set;} }