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 documents { get; set; } public class Document { public string masterWaybillNo { get; set; } public Document(string masterWaybillNo) { this.masterWaybillNo = masterWaybillNo; } } } }