You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
625 B
C#

using System.Collections.Generic;
namespace Myshipping.Application.Service.ExpressDelivery.Dto
{
public class SFPrintWaybillDto
{
public string templateCode { get; set; }
public string version { get; set; }
public string fileType { get; set; }
public bool sync { get; set; }
public List<Document> documents { get; set; }
public class Document
{
public string masterWaybillNo { get; set; }
public Document(string masterWaybillNo)
{
this.masterWaybillNo = masterWaybillNo;
}
}
}
}