PIbd-23_Sergunov_M.A._GiftShop/GiftShop/GiftShopDataModels/Models/IImplementerModel.cs

14 lines
217 B
C#

namespace GiftShopDataModels.Models
{
public interface IImplementerModel : IId
{
string ImplementerFIO { get; }
string Password { get; }
int WorkExperience { get; }
int Qualification { get; }
}
}