crm.core/code/Crm.Core.MsgTool.Domain/Dto/MsgToolTaskEventDto.cs

25 lines
506 B
C#

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<DateTime>();
}
public string? Appid { get; set; }
public string? TaskName { get; set; }
public decimal TaskId { get; set; }
public List<DateTime> PlanTimes { get; set; }
}
}