| 1234567891011121314151617181920 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.ViewModels.Search
- {
- public class NewClientDataView
- {
- public int RowNumber { get; set; }
- public int Id { get; set; }
- public string Client { get; set; }
- public string Contact { get; set; }
- public string Job { get; set; }
- public string Telephone { get; set; }
- public string Location { get; set; }
- }
- }
|