ISEbd_21_Kuklew_M.I._Softwa.../SoftwareInstallationContracts/BindingModels/ImplementerBindingModel.cs

19 lines
519 B
C#
Raw Normal View History

2024-05-11 21:30:00 +04:00
using SoftwareInstallationDataModels;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SoftwareInstallationContracts.BindingModels
{
public class ImplementerBindingModel : IImplementerModel
{
public int Id { get; set; }
public string ImplementerFIO { get; set; } = string.Empty;
public int WorkExperience { get; set; } = 0;
public int Qualification { get; set; } = 0;
public string Password { get; set; } = string.Empty;
}
}