PIbd-42_Kashin_M.I_CPO_Cour.../EmployeeManagmentContracts/SearchModels/PhisicalPersonSearchModel.cs

16 lines
364 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace EmployeeManagmentContracts.SearchModels
{
public class PhisicalPersonSearchModel
{
public string? Name { get; set; }
public string? Surname { get; set; }
public string? Patronomic { get; set; }
}
}