mirror of
https://github.com/DarthAffe/StableDiffusion.NET.git
synced 2025-12-12 21:38:45 +00:00
15 lines
357 B
C#
15 lines
357 B
C#
using System;
|
|
using HPPH;
|
|
|
|
namespace StableDiffusion.NET;
|
|
|
|
public sealed class StableDiffusionPreviewEventArgs(int step, bool isNoisy, Image<ColorRGB> image) : EventArgs
|
|
{
|
|
#region Properties & Fields
|
|
|
|
public int Step { get; } = step;
|
|
public bool IsNoisy { get; } = isNoisy;
|
|
public Image<ColorRGB> Image { get; } = image;
|
|
|
|
#endregion
|
|
} |