TG.WXCRM.V4/Core.DTO/Ord/ResCustomerDto.cs

19 lines
385 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CRM.Core.DTO.Ord
{
public class ResCustomerDto
{
public string resId { get; set; }
}
public class ResCustomerModel : ResCustomerDto
{
public string mobile { get; set; }
public string uname { get; set; }
}
}