PIbd-22_Kamcharova_K.A_Reno.../RenovationWorkDataModels/Models/IImplementerModel.cs

18 lines
361 B
C#
Raw Permalink Normal View History

2024-05-25 21:25:00 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace RenovationWorkDataModels.Models
{
public interface IImplementerModel
{
string ImplementerFIO { get; }
string Password { get; }
int WorkExperience { get; }
int Qualification { get; }
}
}