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.
29 lines
630 B
29 lines
630 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Runtime.Serialization;
|
|
|
|
namespace ICSSoft.Entity
|
|
{
|
|
[DataContract]
|
|
public class AGVResult
|
|
{
|
|
public AGVResult()
|
|
{
|
|
|
|
}
|
|
public AGVResult(string Code, string Message, string ReqCode)
|
|
{
|
|
code = Code;
|
|
message = Message;
|
|
reqCode = ReqCode;
|
|
}
|
|
[DataMember]
|
|
public string code { get; set; }
|
|
[DataMember]
|
|
public string message { get; set; }
|
|
[DataMember]
|
|
public string reqCode { get; set; }
|
|
}
|
|
}
|