SushiBarBase/SushiBar/SushiBarDataModels/Models/IImplementerModel.cs

12 lines
205 B
C#
Raw Permalink Normal View History

2024-05-08 08:52:27 +04:00
namespace SushiBarDataModels.Models
{
public interface IImplementerModel
{
string ImplementerFIO { get; }
string Password { get; }
int WorkExperience { get; }
int Qualification { get; }
}
}