2023-04-03 19:42:55 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace SchoolAgainStudyDataModels.Models
|
|
|
|
|
{
|
|
|
|
|
public interface ITeacher : IId
|
|
|
|
|
{
|
|
|
|
|
string Name { get; }
|
|
|
|
|
string Post { get; }
|
2023-05-17 21:29:39 +04:00
|
|
|
|
string Email { get; }
|
2023-04-03 19:42:55 +04:00
|
|
|
|
string Login { get; }
|
|
|
|
|
string Password { get; }
|
|
|
|
|
}
|
|
|
|
|
}
|