Eliseev_E.E._PIbd-21_DBMS/TransportCompany/TransportCompanyContracts/SearchModels/ClientSearchModel.cs

24 lines
448 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace TransportCompanyContracts.SearchModels
{
public class ClientSearchModel
{
public int? Id { get; set; }
public string? Name { get; set; }
public string? Surname { get; set; }
public string? Patronymic { get; set; }
public string? TelephoneNumber { get; set; }
public string? Email { get; set; }
}
}