source: binary-improvements2/7dtd-server-fixes/src/JSON/JSONValue.cs@ 390

Last change on this file since 390 was 389, checked in by alloc, 2 years ago

Finished up REST API base
Made API handler look for APIs in all loaded mods

File size: 205 bytes
Line 
1namespace AllocsFixes.JSON {
2 public abstract class JSONValue : JSONNode {
3 public abstract string AsString { get; }
4 public abstract int AsInt { get; }
5 public abstract double AsDouble { get; }
6 }
7}
Note: See TracBrowser for help on using the repository browser.