PIbd-23-Yunusov-N.N.-CarRep.../CarRepairShop/CarRepairShopContracts/BindingModels/ImplementerBindingModel.cs
2024-04-22 22:29:10 +04:00

14 lines
389 B
C#

using CarRepairShopDataModels;
namespace CarRepairShopContracts.BindingModels
{
public class ImplementerBindingModel : IImplementerModel
{
public int Id { get; set; }
public string ImplementerFIO { get; set; } = string.Empty;
public int WorkExperience { get; set; } = 0;
public int Qualification { get; set; } = 0;
public string Password { get; set; } = string.Empty;
}
}