using Myshipping.Application.Entity;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Myshipping.Application
{
///
///
///
public class BookingAttachedDataDto
{
///
/// 订舱备注
///
public List remark { get; set; }
///
/// 订舱附件
///
public List file { get; set; }
}
}