Zxd.Core/code/Zxd.Crm.Domain/Dto/BindAppUserDto.cs

22 lines
541 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Zxd.Crm.Domain.Dto
{
public class BindAppUserDto
{
public string from { get; set; }
public int eid { get; set; }
public string resid { get; set; }
public string softusername { get; set; }
public string show_phone { get; set; }
public int type { get; set; }
public int phone { get; set; }
public int verificationCode { get; set; }
}
}