mirror of
https://github.com/DarthAffe/StableDiffusion.NET.git
synced 2025-12-13 05:48:40 +00:00
8 lines
165 B
C#
8 lines
165 B
C#
using System;
|
|
|
|
namespace StableDiffusion.NET;
|
|
|
|
public class LibraryPathCreatingEventArgs(string path) : EventArgs
|
|
{
|
|
public string Path { get; set; } = path;
|
|
} |