// Copyright © WireMock.Net // Copied from https://github.com/Handlebars-Net/Handlebars.Net.Helpers/blob/master/src/Handlebars.Net.Helpers.DynamicLinq namespace WireMock.Json; /// /// Enum to define how to convert an Integer in the Json Object. /// internal enum IntegerBehavior { /// /// Convert all Integer types in the Json Object to a int (unless overflow). /// (default) /// UseInt = 0, /// /// Convert all Integer types in the Json Object to a long. /// UseLong = 1 }