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; } } }