14 lines
395 B
C#
14 lines
395 B
C#
using LawFimDataModels.Models;
|
|
|
|
namespace LawFirmContracts.BindingModels
|
|
{
|
|
public class ClientBindingModel : IClientModel
|
|
{
|
|
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 ExecutorId { get; set; }
|
|
}
|
|
}
|