.net library with GoJS objects

Is there a .net library for GoJS objects for server side programming?

I need serializing objects from server to client, and back from client to server code.

Thank you!

I’m not sure what you mean. You can serialize the GoJS model with myDiagram.model.toJSON() and de-serialize with myDiagram.model = go.Model.fromJSON(someJson).

http://gojs.net/latest/intro/usingModels.html

Or are you looking for something else?