ISEbd-21_Koscheev.M.S.Softw.../SoftwareInstallation/SoftwareInstallationDataModels/IImplementerModel.cs

10 lines
221 B
C#
Raw Permalink Normal View History

2023-04-03 17:46:11 +04:00
namespace SoftwareInstallationDataModels.Models
{
public interface IImplementerModel : IId
{
string ImplementerFIO { get; }
string Password { get; }
int WorkExperience { get; }
int Qualification { get; }
}
}