This commit is contained in:
Stef Heyenrath
2018-06-27 19:56:53 +02:00
parent 24d00845fb
commit 2d1ead25cd
2 changed files with 52 additions and 15 deletions

View File

@@ -0,0 +1,20 @@
using System;
namespace WireMock.Admin.Mappings
{
/// <summary>
/// Status
/// </summary>
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; }
}
}