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

Last change on this file since 397 was 391, checked in by alloc, 2 years ago

Major refactoring/cleanup

File size: 205 bytes
RevLine 
[325]1namespace AllocsFixes.JSON {
[391]2 public abstract class JsonValue : JsonNode {
[389]3 public abstract string AsString { get; }
4 public abstract int AsInt { get; }
5 public abstract double AsDouble { get; }
[279]6 }
[325]7}
Note: See TracBrowser for help on using the repository browser.