mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-01-14 14:23:34 +01:00
* Add TIOBE + include SonarAnalyzer.CSharp * . * cp * Copyright © WireMock.Net * more fixes * fix * xpath * if (Matchers == null || !Matchers.Any()) * if (Matchers != null) * ? * . * .
26 lines
574 B
C#
26 lines
574 B
C#
// Copyright © WireMock.Net
|
|
|
|
namespace WireMock.Admin.Mappings
|
|
{
|
|
/// <summary>
|
|
/// EncodingModel
|
|
/// </summary>
|
|
[FluentBuilder.AutoGenerateBuilder]
|
|
public class EncodingModel
|
|
{
|
|
/// <summary>
|
|
/// Encoding CodePage
|
|
/// </summary>
|
|
public int CodePage { get; set; }
|
|
|
|
/// <summary>
|
|
/// Encoding EncodingName
|
|
/// </summary>
|
|
public string EncodingName { get; set; }
|
|
|
|
/// <summary>
|
|
/// Encoding WebName
|
|
/// </summary>
|
|
public string WebName { get; set; }
|
|
}
|
|
} |