11 lines
239 B
C#
11 lines
239 B
C#
namespace FishFactoryDataModel.Models
|
|
{
|
|
public interface IImplementerModel
|
|
{
|
|
string ImplementerFIO { get; }
|
|
string Password { get; }
|
|
int WorkExperience { get; }
|
|
int Qualification { get; }
|
|
}
|
|
}
|