Added deserialzor node for parsing the json to model ot list of model
Some checks failed
Build / build (push) Successful in 28s
CodeQL / Analyze (csharp) (push) Has been cancelled

This commit is contained in:
Ankitkumar Satapara
2026-04-25 00:37:53 +05:30
parent d4e6a7a06f
commit 77cd472f73
8 changed files with 450 additions and 1 deletions

View File

@@ -502,6 +502,25 @@
</nodify:Node>
</DataTemplate>
<DataTemplate DataType="{x:Type local:DeserializeOperationViewModel}">
<nodify:Node Header="{Binding Title}"
Content="{Binding}"
Input="{Binding Input}"
Output="{Binding Output}">
<nodify:Node.ContentTemplate>
<DataTemplate DataType="{x:Type local:DeserializeOperationViewModel}">
<StackPanel>
<TextBlock Text="Target Type" FontSize="10" Foreground="Gray" Margin="0,0,0,2" />
<ComboBox ItemsSource="{Binding AvailableTargetTypes}"
SelectedItem="{Binding SelectedTargetType, Mode=TwoWay}"
MinWidth="120"
Margin="0,0,0,2" />
</StackPanel>
</DataTemplate>
</nodify:Node.ContentTemplate>
</nodify:Node>
</DataTemplate>
<DataTemplate DataType="{x:Type local:StringConcatOperationViewModel}">
<nodify:Node Header="{Binding Title}"
Content="{Binding}"