12 lines
433 B
C#
12 lines
433 B
C#
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;
|
|
}
|
|
} |