14 lines
396 B
C#
14 lines
396 B
C#
using LawFimDataModels.Models;
|
|
|
|
namespace LawFirmContracts.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; }
|
|
}
|
|
}
|