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

17 lines
326 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 CreateTaskCmdByTaskIdDto
{
/// <summary>
/// 任务id
/// </summary>
public decimal TaskId { get; set; }
}
}