namespace WMS_GIRAF_Interface.Models; public class ItemDroppedReturn { public class RootObject { /// /// The status of the request /// 0:UnknownError;1:Ok;2:UnknownPost;3:UnknownInputRequestId;4:AlreadyDone /// public string status { get; set; } /// /// if status !=1 error details /// public string? errorDetails { get; set; } } }