2024-05-01 01:54:08 +04:00
|
|
|
|
using LawCompanyDataModels.Models;
|
|
|
|
|
|
|
|
|
|
namespace LawCompanyContracts.BindingModels
|
|
|
|
|
{
|
2024-05-01 23:48:28 +04:00
|
|
|
|
public class LawyerBindingModel : ILawyerModel
|
|
|
|
|
{
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
public string FIO { get; set; } = string.Empty;
|
|
|
|
|
public string Phone { get; set; } = string.Empty;
|
|
|
|
|
public string Email { get; set; } = string.Empty;
|
2024-05-02 14:23:30 +04:00
|
|
|
|
public int GuarantorId { get; set; }
|
2024-05-01 23:48:28 +04:00
|
|
|
|
}
|
2024-05-01 01:54:08 +04:00
|
|
|
|
}
|