PIbd23_Ivanova_Yakobchuk_Co.../LawCompany/LawCompanyContracts/ViewModels/ClientViewModel.cs

18 lines
516 B
C#

using LawCompanyDataModels.Models;
using System.ComponentModel;
namespace LawCompanyContracts.ViewModels
{
public class ClientViewModel : IClientModel
{
public int Id { get; set; }
[DisplayName("ФИО клиента")]
public string FIO { get; set; } = string.Empty;
[DisplayName("Email клиента")]
public string Email { get; set; } = string.Empty;
[DisplayName("Телефон клиента")]
public string Phone { get; set; } = string.Empty;
public int ExecutorId { get; set; }
}
}