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

18 lines
566 B
C#

using LawFimDataModels.Models;
using System.ComponentModel;
namespace LawFirmContracts.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; }
}
}