using System; using System.Collections.Generic; namespace Myshipping.Application.Service.BookingOrder.Dto { public class ReceiveBcInfoDto { public string MBLNO { get; set; } public string CUSTNO { get; set; } public DateTime? CLOSEVGMDATE { get; set; } public DateTime? CLOSEDOCDATE { get; set; } public string VESSEL { get; set; } public string VOYNO { get; set; } public DateTime? ETD { get; set; } public List Files { get; set; } public class DownloadFile { public long Id { get; set; } public string FileName { get; set; } public string FileType { get; set; } public string FilePath { get; set; } } } }