15 lines
394 B
15 lines
394 B
namespace WMS_GIRAF_Interface.Models;
|
|
|
|
public class CancelOutputRequestReturn
|
|
{
|
|
/// <summary>
|
|
/// The status of the request
|
|
/// 0:UnknownError;1:Ok;2:UnknownPost;3:UnknownInputRequestId;4:AlreadyDone
|
|
/// </summary>
|
|
public string status { get; set; }
|
|
|
|
/// <summary>
|
|
/// if status !=1 error details
|
|
/// </summary>
|
|
public string? errorDetails { get; set; }
|
|
}
|