17 lines
379 B
C#
17 lines
379 B
C#
|
using ShipyardDataModels.Models;
|
|||
|
|
|||
|
namespace ShipyardContracts.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; }
|
|||
|
}
|
|||
|
}
|