PIbd-23_Starostin_I.K._Ship.../ShipyardDataModels/IImplementerModel.cs

18 lines
339 B
C#
Raw Normal View History

2024-06-02 18:04:59 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ShipyardDataModels.Models
{
public interface IImplementerModel
{
string ImplementerFIO { get; }
string Password { get; }
int WorkExperience { get; }
int Qualification { get; }
}
}