18 lines
445 B
C#
18 lines
445 B
C#
using System.ComponentModel;
|
|
using ConstructionCompanyDataModels.Models;
|
|
|
|
namespace ConstructionCompanyContracts.ViewModels
|
|
{
|
|
public class CustomerViewModel : ICustomerModel
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
[DisplayName("ФИО")]
|
|
public string DriverFio { get; set; } = string.Empty;
|
|
|
|
[DisplayName("Номер телефона")]
|
|
public string PhoneNumber { get; set; } = string.Empty;
|
|
}
|
|
}
|
|
|