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

18 lines
411 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 SearchMsgToolCmdDetailDto : SearchPageBase
{
public decimal? CmdId { get; set; }
public string? Name { get; set; }
}
public class SerachCmdEnableDto
{
public decimal? CmdId { get; set; }
}
}