PIbd-23_Yakobchuk_S.V._Moto.../MotorPlant/MotorPlantDataModels/IImplementerModel.cs

17 lines
349 B
C#
Raw Normal View History

2024-05-25 21:26:30 +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; }
}
}