using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace YLErp.Modules.TaskEventModule.Dto { public class AddGuoXinPushDataTaskResponse { public bool Success { get; set; } public string ErrorMsg { get; set; } /// /// 任务Id /// public int Id { get; set; } /// /// 预计时间 /// public int PredictTime { get; set; } } }