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

18 lines
566 B
C#
Raw Normal View History

2024-04-18 21:44:46 +04:00
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;
2024-04-27 23:00:03 +04:00
public int ExecutorId { get; set; }
2024-04-18 21:44:46 +04:00
}
}