mirror of
https://github.com/DarthAffe/StableDiffusion.NET.git
synced 2025-12-13 05:48:40 +00:00
11 lines
293 B
C#
11 lines
293 B
C#
using JetBrains.Annotations;
|
|
|
|
namespace StableDiffusion.NET;
|
|
|
|
[PublicAPI]
|
|
public sealed class PhotoMakerParameter
|
|
{
|
|
public string InputIdImageDirectory { get; set; } = string.Empty;
|
|
public float StyleRatio { get; set; } = 20f;
|
|
public bool NormalizeInput { get; set; } = false;
|
|
} |