using System; using System.Collections.Generic; using System.Text; namespace BBWY.Server.Model.Dto { public class SkuRecentCostRequest { public long? ShopId { get; set; } public DateTime StartDate { get; set; } public DateTime EndDate { get; set; } } }