Добавил биндинг модель

This commit is contained in:
Никита Потапов 2024-04-20 13:48:22 +04:00
parent 198259830e
commit cd0176b2d8

View File

@ -0,0 +1,13 @@
using SecuritySystemDataModels.Models;
namespace SecuritySystemContracts.BindingModels
{
public class ImplementerBindingModel : IImplementerModel
{
public string ImplementerFIO { get; set; } = string.Empty;
public string Password { get; set; } = string.Empty;
public int WorkExperience { get; set; }
public int Qualification { get; set; }
public int Id { get; set; }
}
}