SUBD/CarRentContracts/SearchModels/ClientSearchModel.cs

24 lines
448 B
C#
Raw Normal View History

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