2024-10-23 15:52:24 +04:00

22 lines
392 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace EnterpriseContracts.BindingModels
{
public class EmployeeBindingModel
{
public int? Id { get; set; }
public string Skill { get; set; }
public string Photo { get; set; }
public string FIO { get; set; }
public string PhoneNumber { get; set; }
}
}