PIbd-22_Fedorenko_Puchkina_.../LawFim/LawFirmContracts/SearchModels/LawyerSearchModel.cs

18 lines
421 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LawFirmContracts.SearchModels
{
public class LawyerSearchModel
{
public int? Id { get; set; }
public string? FIO { get; set; }
public string? Phone { get; set; }
public string? Email { get; set; }
public int? GuarantorId { get; set; }
}
}