2024-04-29 15:36:48 +04:00

14 lines
232 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace UniversityDataModels
{
public interface IEmployeeModel
{
string Post { get; }
}
}