You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
394 B
15 lines
394 B
namespace WMS_GIRAF_Interface.Models;
|
|
|
|
public class UpdateOutputRequestReturn
|
|
{
|
|
/// <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; }
|
|
}
|