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.

16 lines
443 B
C#

using System;
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; }
}
}