using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Crm.Core.MsgTool.Domain.Dto { public class MsgToolTaskEventDto { public MsgToolTaskEventDto() { PlanTimes = new List(); } public string? Appid { get; set; } public string? TaskName { get; set; } public decimal TaskId { get; set; } public List PlanTimes { get; set; } } }