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

21 lines
605 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 CmdDetailDto
{
public decimal Pkid { get; set; }
public string? Nickname { get; set; }
public string? Avatar { get; set; }
public string? Name { get; set; }
public string? Userid { get; set; }
public string? KfUserId { get; set; }
public string? Corpid { get; set; }
public int? UnEnabled { get; set; }
public string? Remark { get; set; } = "";
}
}