mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-04-29 03:37:03 +02: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>
27 lines
578 B
C#
27 lines
578 B
C#
// Copyright © WireMock.Net
|
|
|
|
using WireMock.Types;
|
|
|
|
namespace WireMock.Serialization;
|
|
|
|
/// <summary>
|
|
/// MappingConverterSettings
|
|
/// </summary>
|
|
public class MappingConverterSettings
|
|
{
|
|
/// <summary>
|
|
/// Use 'Server' or 'Builder'.
|
|
///
|
|
/// Default is Server
|
|
/// </summary>
|
|
public MappingConverterType ConverterType { get; set; }
|
|
|
|
/// <summary>
|
|
/// Add "var server = WireMockServer.Start();"
|
|
/// or
|
|
/// Add "var builder = new MappingBuilder();"
|
|
///
|
|
/// Default it's false.
|
|
/// </summary>
|
|
public bool AddStart { get; set; }
|
|
} |