19 lines
426 B
C#
19 lines
426 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SchoolAgainStudyDataModels.Models
|
|
{
|
|
public interface IStudent : IId
|
|
{
|
|
string Name { get; }
|
|
int Class { get; }
|
|
string Email { get; }
|
|
string Login { get; }
|
|
string Password { get; }
|
|
Dictionary<int, IInterest> StudentInterests { get; }
|
|
}
|
|
}
|