namespace WMS_GIRAF_Interface.Models; public class InputRequestReturn { public class RootObject { /// /// The status of the request /// 0:UnknownError;1:Created;2:WrongParameters;3:NoStorageSpace;4:MechanicalIssue;5:UnknownPost /// public string status { get; set; } /// /// if status is 1, this will be the introduction post /// public string? introductionPost { get; set; } /// /// if status !=1 error details /// public string? errorDetails { get; set; } } }