NewClientDataView.cs 512 B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace OASystem.Domain.ViewModels.Search
  7. {
  8. public class NewClientDataView
  9. {
  10. public int RowNumber { get; set; }
  11. public int Id { get; set; }
  12. public string Client { get; set; }
  13. public string Contact { get; set; }
  14. public string Job { get; set; }
  15. public string Telephone { get; set; }
  16. public string Location { get; set; }
  17. }
  18. }