Multi-Platform Package Manager for Stable Diffusion
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
557 B

using System.Text.Json;
using System.Text.Json.Nodes;
using System.Text.Json.Serialization;
namespace StabilityMatrix.Core.Models.Api.Comfy;
public class ComfyInputInfo
{
[JsonPropertyName("required")]
public Dictionary<string, JsonValue>? Required { get; set; }
public List<string>? GetRequiredValueAsNestedList(string key)
{
var value = Required?[key];
if (value is null) return null;
var nested = value.Deserialize<List<List<string>>>();
return nested?.SelectMany(x => x).ToList();
}
}