mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-01-17 23:57:03 +01:00
21 lines
454 B
C#
21 lines
454 B
C#
using System;
|
|
|
|
namespace WireMock.Admin.Mappings
|
|
{
|
|
/// <summary>
|
|
/// Status
|
|
/// </summary>
|
|
[FluentBuilder.AutoGenerateBuilder]
|
|
public class StatusModel
|
|
{
|
|
/// <summary>
|
|
/// The optional guid.
|
|
/// </summary>
|
|
public Guid? Guid { get; set; }
|
|
|
|
/// <summary>
|
|
/// The status (can also contain the error message).
|
|
/// </summary>
|
|
public string Status { get; set; }
|
|
}
|
|
} |