using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DS.WMS.Core.Op.EDI
{
public class SubmitTelexResultDto
{
public SubmitTelexResultDto(string mBLNO, bool isSuccess, string failReason)
{
MBLNO = mBLNO;
IsSuccess = isSuccess;
FailReason = failReason;
}
///
/// 提单号
///
public string MBLNO { get; set; }
public bool IsSuccess { get; set; }
///
/// 失败原因
///
public string FailReason { get; set; }
}
}