Added Javascript client generator. Fixed a few bugs. Improved client generator code.

This commit is contained in:
2023-04-12 18:03:55 -07:00
parent 6a7f6ce096
commit e2c5aba868
6 changed files with 667 additions and 17 deletions

View File

@ -7,6 +7,7 @@ using System.Net;
using System.IO;
using MontoyaTech.Rest.Net;
using System.Net.Mime;
using System.Collections;
namespace MontoyaTech.Rest.Net.Example
{
@ -16,6 +17,8 @@ namespace MontoyaTech.Rest.Net.Example
{
public string Id;
public char FirstInitial;
public UserRole Role { get; set; }
public List<Permission> Permissions;
@ -39,6 +42,8 @@ namespace MontoyaTech.Rest.Net.Example
public List<string> List = null;
public string[] Array = null;
public ulong Property { get; set; }
public User() { }