mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-01-16 23:26:52 +01:00
* Create WireMock.Net.MimePart project * . * REFACTOR * ILRepack * -- * ... * x * x * . * fix * public class MimePartMatcher * shared * min * . * <!--<DelaySign>true</DelaySign>--> * Update README.md Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
12 lines
401 B
C#
12 lines
401 B
C#
// Copyright © WireMock.Net
|
|
|
|
// Copied from https://github.com/Handlebars-Net/Handlebars.Net.Helpers/blob/master/src/Handlebars.Net.Helpers.DynamicLinq
|
|
|
|
namespace WireMock.Json;
|
|
|
|
internal class DynamicJsonClassOptions
|
|
{
|
|
public IntegerBehavior IntegerConvertBehavior { get; set; } = IntegerBehavior.UseLong;
|
|
|
|
public FloatBehavior FloatConvertBehavior { get; set; } = FloatBehavior.UseDouble;
|
|
} |