PIbd-22_Fedorenko_Puchkina_.../LawFim/LawFirmContracts/ViewModels/LawyerViewModel.cs

19 lines
611 B
C#
Raw Normal View History

using LawFimDataModels.Models;
using System.ComponentModel;
namespace LawFirmContracts.ViewModels
{
public class LawyerViewModel : ILawyerModel
{
[DisplayName("Номер юриста")]
public int Id { get; set; }
[DisplayName("Имя юриста")]
public string FIO { get; set; } = string.Empty;
[DisplayName("Телефон юриста")]
public string Phone { get; set; } = string.Empty;
[DisplayName("E-mail юриста")]
public string Email { get; set; } = string.Empty;
public int GuarantorId { get; set; }
}
}