mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-03-25 18:41:01 +01:00
16 lines
359 B
C#
16 lines
359 B
C#
using System.IO;
|
|
|
|
namespace WireMock.Util;
|
|
|
|
internal class BodyParserSettings
|
|
{
|
|
public Stream Stream { get; set; } = null!;
|
|
|
|
public string? ContentType { get; set; }
|
|
|
|
public string? ContentEncoding { get; set; }
|
|
|
|
public bool DecompressGZipAndDeflate { get; set; } = true;
|
|
|
|
public bool DeserializeJson { get; set; } = true;
|
|
} |