using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Myshipping.Application.Service.BookingSlot.Dto { public class AvailableSlotDto { public long Id { get; set; } public string CtnCode { get; set; } public int CtnAll { get; set; } public int NumResidue { get; set; } } }