PIbd-23_Elatomtsev_L.K._Con.../Confectionery/ConfectioneryContracts/BindingModels/ImplementerBindingModel.cs

12 lines
433 B
C#
Raw Permalink Normal View History

2024-05-08 15:04:44 +04:00
using ConfectioneryDataModels.Models;
namespace ConfectioneryContracts.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;
}
}