ISEbd-21_KashtanovD.A.FishF.../FishFactory/FishFactoryDataModels/Models/IImplementerModel.cs
2024-04-30 22:57:42 +04:00

17 lines
330 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FishFactoryDataModels.Models
{
public interface IImplementerModel : IId
{
string ImplementerFIO { get; }
string Password { get; }
int WorkExperience { get; }
int Qualification { get; }
}
}