Добавлена модель-интерфейс исполнителя

This commit is contained in:
Никита Потапов 2024-04-20 13:35:47 +04:00
parent 73d3264d20
commit 72f55c5027

View File

@ -0,0 +1,10 @@
namespace SecuritySystemDataModels.Models
{
public interface IImplementerModel
{
string ImplementerFIO { get; }
string Password { get; }
int WorkExperience { get; }
int Qualification { get; }
}
}