mirror of
https://github.com/SamueleLorefice/ComfySharp
synced 2026-01-14 23:35:56 +00:00
Added missing field for Node class
This commit is contained in:
6
.idea/.idea.ComfySharp/.idea/vcs.xml
generated
Normal file
6
.idea/.idea.ComfySharp/.idea/vcs.xml
generated
Normal 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>
|
||||
@@ -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]
|
||||
|
||||
Reference in New Issue
Block a user