PIbd-31_Belianin.N.N_COP_8/Lab 3/Belianin_3/EnterpriseContracts/ViewModels/EmployeeViewModel.cs
2024-10-23 15:52:24 +04:00

26 lines
518 B
C#

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; }
}
}