25 lines
589 B
C#
25 lines
589 B
C#
|
using CaseAccountingDataModels.Models;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace CaseAccountingContracts.BindingModels
|
|||
|
{
|
|||
|
public class LawyerBindingModel : ILawyerModel
|
|||
|
{
|
|||
|
public string Name { get; set; } = string.Empty;
|
|||
|
|
|||
|
public string Surname { get; set; } = string.Empty;
|
|||
|
|
|||
|
public string Patronymic { get; set; } = string.Empty;
|
|||
|
|
|||
|
public int Experience { get; set; }
|
|||
|
|
|||
|
public int SpecializationId { get; set; }
|
|||
|
|
|||
|
public int Id { get; set; }
|
|||
|
}
|
|||
|
}
|