23 lines
589 B
C#
23 lines
589 B
C#
using ConstructionFirmDataModels.Models;
|
|
using System.ComponentModel;
|
|
|
|
namespace Subd_4.ViewModels
|
|
{
|
|
public class ClientViewModel : IClientModel
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
[DisplayName ("Название организации")]
|
|
public string Organization { get; set; } = string.Empty;
|
|
|
|
[DisplayName("Контактное лицо")]
|
|
public string ContractPerson { get; set; } = string.Empty;
|
|
|
|
[DisplayName("Телефон ")]
|
|
public string Phone { get; set; } = string.Empty;
|
|
|
|
[DisplayName("Почта")]
|
|
public string Email { get; set; } = string.Empty;
|
|
}
|
|
}
|