Added missing event-args

This commit is contained in:
Darth Affe 2024-03-22 23:42:35 +01:00
parent 6d6bfe3fc6
commit e767ec67c8

View File

@ -0,0 +1,8 @@
using System;
namespace StableDiffusion.NET;
public class LibraryPathCreatingEventArgs(string path) : EventArgs
{
public string Path { get; set; } = path;
}