ISEbd-21_Gavrilov_R.A._Cour.../DataModel1/IEmployeeModel.cs
2024-04-30 23:53:53 +04:00

7 lines
107 B
C#

namespace DataModels
{
public interface IEmployeeModel : IClientModel
{
string Post { get; }
}
}