24 lines
738 B
C#
24 lines
738 B
C#
|
using ClientsContracts.BusinessLogicContracts;
|
|||
|
using ClientsDataModels.Models;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.ComponentModel;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace ClientsContracts.ViewModels
|
|||
|
{
|
|||
|
public class ClientViewModel : IClientModel
|
|||
|
{
|
|||
|
[DisplayName("ФИО")]
|
|||
|
public string Fio { get; set; } = string.Empty;
|
|||
|
[DisplayName("Электронная почта")]
|
|||
|
public string Email { get; set; } = string.Empty;
|
|||
|
public int Id { get; set; }
|
|||
|
public int CategoryId { get; set; }
|
|||
|
public string CategoryName { get; set; } = string.Empty;
|
|||
|
public string Photo { get; set; } = string.Empty;
|
|||
|
}
|
|||
|
}
|