PIbd22_NikiforovaMV_Automob.../AutomobilePlantDataModels/Models/IImplementerModel.cs
2024-06-22 22:27:59 +04:00

17 lines
367 B
C#

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