|
|
|
@ -1,4 +1,5 @@
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace Myshipping.Application.Service.BookingOrder.Dto
|
|
|
|
|
{
|
|
|
|
@ -11,5 +12,14 @@ namespace Myshipping.Application.Service.BookingOrder.Dto
|
|
|
|
|
public string VESSEL { get; set; }
|
|
|
|
|
public string VOYNO { get; set; }
|
|
|
|
|
public DateTime? ETD { get; set; }
|
|
|
|
|
|
|
|
|
|
public List<DownloadFile> Files { get; set; }
|
|
|
|
|
|
|
|
|
|
public class DownloadFile
|
|
|
|
|
{
|
|
|
|
|
public string FileName { get; set; }
|
|
|
|
|
public string FileType { get; set; }
|
|
|
|
|
public string FilePath { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|