PIbd23_Ivanova_Yakobchuk_Co.../LawCompany/LawCompanyContracts/ViewModels/ILawyerViewModel.cs

18 lines
555 B
C#
Raw Normal View History

using LawCompanyDataModels.Models;
using System.ComponentModel;
namespace LawCompanyContracts.ViewModels
{
2024-05-01 23:48:28 +04:00
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; }
}
}