Body Encoding - admin interface

This commit is contained in:
Sebastian Bebrys
2017-02-23 14:45:43 +01:00
parent c38373eb1f
commit 6513ac9de8
11 changed files with 134 additions and 59 deletions

View File

@@ -1,4 +1,6 @@
using System.Collections.Generic;
using System.Text;
using WireMock.Admin.Mappings;
namespace WireMock.Admin.Requests
{
@@ -26,5 +28,10 @@ namespace WireMock.Admin.Requests
/// Gets or sets the original body.
/// </summary>
public string BodyOriginal { get; set; }
/// <summary>
/// Gets or sets the body.
/// </summary>
public EncodingModel BodyEncoding { get; set; }
}
}