Skip to content

Commit

Permalink
added node initialization data structure
Browse files Browse the repository at this point in the history
  • Loading branch information
janzenisek committed Dec 5, 2024
1 parent 35380bb commit 8494a00
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/Data/Records.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using System;
using Ai.Hgb.Common.Entities;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
Expand All @@ -14,4 +15,5 @@ public record NodeRecord(string name);
public record EdgeRecord(string name, string from, string to, string type, string payload);
public record GraphRecord(IEnumerable<NodeRecord> nodes, IEnumerable<EdgeRecord> edges);

public record InitializationRecord(string name, string typeImageName, string typeImageTag, string parameterJson, RoutingTable routing);
}

0 comments on commit 8494a00

Please sign in to comment.