PIbd-23-Radaev-A.V.-GiftShop/GiftShop/GiftShopDataModels/Models/IImplementerModel.cs

14 lines
217 B
C#
Raw Normal View History

2024-05-15 15:07:11 +04:00
namespace GiftShopDataModels.Models
{
public interface IImplementerModel : IId
{
string ImplementerFIO { get; }
string Password { get; }
int WorkExperience { get; }
int Qualification { get; }
}
}