ISEbd_21_Kuklew_M.I._Softwa.../SoftwareInstallationDataModels/Models/IImplementerModel.cs
Максим Куклев a21abcc3f4 загрузил
2024-05-11 21:30:00 +04:00

18 lines
327 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SoftwareInstallationDataModels
{
public interface IImplementerModel
{
string ImplementerFIO { get; }
string Password { get; }
int WorkExperience { get; }
int Qualification { get; }
}
}