SushiBarBase/SushiBar/SushiBarContracts/BindingModels/ImplementerBindingModel.cs

14 lines
386 B
C#
Raw Permalink Normal View History

2024-05-08 08:52:27 +04:00
using SushiBarDataModels.Models;
namespace SushiBarContracts.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;
}
}