diff --git a/StableDiffusion.NET/EventArgs/LibraryPathCreatingEventArgs.cs b/StableDiffusion.NET/EventArgs/LibraryPathCreatingEventArgs.cs new file mode 100644 index 0000000..52f6e80 --- /dev/null +++ b/StableDiffusion.NET/EventArgs/LibraryPathCreatingEventArgs.cs @@ -0,0 +1,8 @@ +using System; + +namespace StableDiffusion.NET; + +public class LibraryPathCreatingEventArgs(string path) : EventArgs +{ + public string Path { get; set; } = path; +} \ No newline at end of file