PIbd-31_Belianin.N.N_COP_8/Lab 3/Belianin_3/EnterpriseContracts/ViewModels/EmployeeViewModel.cs

26 lines
518 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace EnterpriseContracts.ViewModels
{
public class EmployeeViewModel
{
public int? Id { get; set; }
[DisplayName("Навык")]
public string Skill { get; set; }
public string Photo { get; set; }
[DisplayName("ФИО")]
public string FIO { get; set; }
[DisplayName("Номер телефона")]
public string PhoneNumber { get; set; }
}
}