9 lines
212 B
C#
Raw Normal View History

2023-04-09 23:25:46 +04:00
namespace SushiBarDataModels.Models;
public interface IImplementerModel : IId
{
string ImplementerFio { get; }
string Password { get; }
int WorkExperience { get; }
int Qualification { get; }
}