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.
27 lines
775 B
C#
27 lines
775 B
C#
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<DownloadFile> 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; }
|
|
}
|
|
}
|
|
}
|