PIbd-23-Radaev-A.V.-GiftShop/GiftShop/GiftShopContracts/BindingModels/ImplementerBindingModel.cs
Arkadiy Radaev e9c62b734f res 6
2024-05-15 15:07:11 +04:00

18 lines
380 B
C#

using GiftShopDataModels.Models;
namespace GiftShopContracts.BindingModels
{
public class ImplementerBindingModel : IImplementerModel
{
public int Id { get; set; }
public string ImplementerFIO { get; set; } = string.Empty;
public string Password { get; set; } = string.Empty;
public int WorkExperience { get; set; }
public int Qualification { get; set; }
}
}