using System.Collections.Generic; namespace BBWY.Server.Model.Dto { public class StartPromotionTaskResponse { public string BrandName { get; set; } public long JDPromotionId { get; set; } public IList DeleteGiftSkuList { get; set; } } public class StartPromotionDelayTaskResponse { public bool IsAllMotherSkuOK { get; set; } public string ErrorMsg { get; set; } } }