PIbd23_Ivanova_Yakobchuk_Co.../LawCompany/LawCompanyContracts/SearchModels/ClientSearchModel.cs

12 lines
267 B
C#
Raw Normal View History

2024-05-01 00:49:33 +04:00
namespace LawCompanyContracts.SearchModels
{
public class ClientSearchModel
{
public int? Id { get; set; }
public string? FIO { get; set; }
public string? Phone { get; set; }
public string? Email { get; set; }
public int? ExecutorId { get; set; }
2024-05-01 00:49:33 +04:00
}
}