PIbd-23-Radaev-A.V.-GiftShop/GiftShop/GiftShopDataModels/Models/IImplementerModel.cs
Arkadiy Radaev e9c62b734f res 6
2024-05-15 15:07:11 +04:00

14 lines
217 B
C#

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