14 lines
364 B
C#
14 lines
364 B
C#
using LawCompanyDataModels.Models;
|
|
|
|
namespace LawCompanyContracts.BindingModels
|
|
{
|
|
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;
|
|
public int GuarantorId { get; set; }
|
|
}
|
|
}
|