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.
|
using System.Collections.Generic;
|
|
|
|
namespace Myshipping.Application
|
|
{
|
|
/// <summary>
|
|
/// 验证箱信息是否会被覆盖Dto类
|
|
/// </summary>
|
|
public class CheckCtnCoverDto
|
|
{
|
|
public long BookingOrderId { get; set; }
|
|
public List<BookingCtnDto> CtnInputs { get; set; }
|
|
}
|
|
}
|