Serialization of ATS
- Dominant language
- C#
- Stars
- 0
- Forks
- 0
- PR merge metrics
- No merged PRs in 30d
Description
We need to figure out how we want to handle serialization:

```
public record FunctionNode(string Function, List Arguments) : Node
```
As its not strait forward to just added [JsonProperty] to record properties here as
1) Should we add system.text.json as dependency
2) Should we add newtonsoft as dependency
If we want to keep it not so tight coubled , we could add Compo.System.Text.Json and Compo.NewtonSoft.Json and add converters/serializers for the node types there and packages can be installed depending on what serialization one would want.
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.