PIbd-21_Afanasev_S.S_MotorP.../MotorPlant/MotorPlantDataModels/IImplementerModel.cs

17 lines
349 B
C#
Raw Permalink Normal View History

2024-05-03 00:33:06 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MotorPlantDataModels
{
public interface IImplementerModel
{
string ImplementerFIO { get; }
string Password { get; }
int WorkExperience { get; }
int Qualification { get; }
}
}