19 lines
385 B
C#
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; }
|
|
}
|
|
} |