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

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

Major refactoring/cleanup

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.