mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-01-15 14:53:37 +01:00
* refactor * rename api * -preview-01 * logger * move * RandomDataGenerator.Net * . * ISettings * renames... * refactor CommandlineParser logic * remove standalone * Remove Interfaces * Update tests * WireMock.Net.StandAlone * . * fix * . * _settings * Admin * WireMock.Net.Abstractions * fix build * rename WireMockServer * fix compile errors
40 lines
953 B
C#
40 lines
953 B
C#
using System;
|
|
|
|
namespace WireMock.Admin.Requests
|
|
{
|
|
/// <summary>
|
|
/// Request Log Model
|
|
/// </summary>
|
|
public class LogEntryModel
|
|
{
|
|
/// <summary>
|
|
/// The unique identifier.
|
|
/// </summary>
|
|
public Guid Guid { get; set; }
|
|
|
|
/// <summary>
|
|
/// The request.
|
|
/// </summary>
|
|
public LogRequestModel Request { get; set; }
|
|
|
|
/// <summary>
|
|
/// The response.
|
|
/// </summary>
|
|
public LogResponseModel Response { get; set; }
|
|
|
|
/// <summary>
|
|
/// The mapping unique identifier.
|
|
/// </summary>
|
|
public Guid? MappingGuid { get; set; }
|
|
|
|
/// <summary>
|
|
/// The mapping unique title.
|
|
/// </summary>
|
|
public string MappingTitle { get; set; }
|
|
|
|
/// <summary>
|
|
/// The request match result.
|
|
/// </summary>
|
|
public LogRequestMatchModel RequestMatchResult { get; set; }
|
|
}
|
|
} |