ISEbd-21_Gavrilov_R.A._Cour.../DataModel1/IEmployeeModel.cs

7 lines
107 B
C#
Raw Normal View History

2024-04-30 23:53:53 +04:00
namespace DataModels
{
public interface IEmployeeModel : IClientModel
{
string Post { get; }
}
}