From e767ec67c8c8c618cbd5e87a9ab3327b5e8e8624 Mon Sep 17 00:00:00 2001 From: Darth Affe Date: Fri, 22 Mar 2024 23:42:35 +0100 Subject: [PATCH] Added missing event-args --- .../EventArgs/LibraryPathCreatingEventArgs.cs | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 StableDiffusion.NET/EventArgs/LibraryPathCreatingEventArgs.cs 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