18 lines
329 B
C#
Raw Normal View History

2024-05-02 14:54:56 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace TravelCompanyDataModels
{
2024-05-18 14:59:42 +04:00
public interface IImplementerModel : IId
{
2024-05-02 14:54:56 +04:00
string ImplementerFIO { get; }
string Password { get; }
int WorkExperience { get; }
int Qualification { get; }
}
}