PIbd-22_Safiulova_K.N._Airc.../AircraftPlant/AircraftPlantDataModels/IImplementerModel.cs
2024-05-06 21:14:20 +04:00

17 lines
358 B
C#

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