PIbd-21_Rodionov_I.A._IceCr.../IceCreamShop/IceCreamShopContracts/BindingModels/ImplementerBindingModel.cs

17 lines
426 B
C#
Raw Normal View History

using IceCreamShopDataModels.Models;
namespace IceCreamShopContracts.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; }
}
}