Added missing field for Node class

This commit is contained in:
Samuele Lorefice
2023-11-11 03:52:44 +01:00
parent f400b78edf
commit 98bae75297
2 changed files with 14 additions and 2 deletions

6
.idea/.idea.ComfySharp/.idea/vcs.xml generated Normal file
View File

@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="$PROJECT_DIR$" vcs="Git" />
</component>
</project>

View File

@@ -81,8 +81,14 @@ public class Node {
public List<bool> OutputIsList { get; set; }
[DataMember(Name = "output_name")]
public List<string> OutputNames { get; set; }
[DataMember(Name = "display_name")]
public string DisplayName { get; set; }
[DataMember(Name = "description")]
public string Description { get; set; }
[DataMember(Name = "category")]
public string Category { get; set; }
[DataMember(Name = "output_node")]
public bool IsOutputNode { get; set; }
}
[DataContract]