11 lines
245 B
C#
Raw Permalink Normal View History

namespace FishFactoryDataModel.Models
{
2024-05-14 19:05:59 +04:00
public interface IImplementerModel : IId
{
string ImplementerFIO { get; }
string Password { get; }
int WorkExperience { get; }
int Qualification { get; }
}
}