PIbd-21_Anisin_R.S._CarRepa.../CarRepairShop/CarRepairShopDataModels/Models/IImplementerModel.cs
2024-05-02 22:47:27 +04:00

14 lines
251 B
C#

namespace CarRepairShopDataModels.Models
{
public interface IImplementerModel : IId
{
string ImplementerFIO { get; }
string Password { get; }
int WorkExperience { get; }
int Qualification { get; }
}
}