Skip to content

Commit

Permalink
fixed records
Browse files Browse the repository at this point in the history
  • Loading branch information
janzenisek committed Dec 11, 2024
1 parent 4d0783c commit 9e4385e
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/Data/Records.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,6 @@ public record EdgeRecord(string name, string from, string to, string type, strin
public record GraphRecord(IEnumerable<NodeRecord> nodes, IEnumerable<EdgeRecord> edges);

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

public record InitializationRecord(string name, string typeImageName, string typeImageTag, Dictionary<string, object> parameters, RoutingTable routing);
}

0 comments on commit 9e4385e

Please sign in to comment.