I've got c# objects that I need references to in javascript for default population. Currently I'm maintaining 2 different objects which is not that maintainable.
For example ( simplified for demo purposes ):
C#
public class Text
{
     public string Name {get;set;}
}
JSON
{
     'text': {
          name: undefined
     }
}
I know there is a number of ways to accomplish this but wondering if anyone has a recommended solution. Thanks!
 
     
     
    