using System.Text.Json.Serialization; namespace StabilityMatrix.Core.Models.Api.Comfy.WebSocketData; public class ComfyWebSocketExecutingData { [JsonPropertyName("prompt_id")] public string? PromptId { get; set; } /// /// When this is null it indicates completed /// [JsonPropertyName("node")] public string? Node { get; set; } }