StableDiffusion.NET/StableDiffusion.NET/EventArgs/LibraryPathCreatingEventArgs.cs

8 lines
165 B
C#

using System;
namespace StableDiffusion.NET;
public class LibraryPathCreatingEventArgs(string path) : EventArgs
{
public string Path { get; set; } = path;
}