19 lines
440 B
C#
19 lines
440 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SchoolAgainStudyDataModels.Models
|
|
{
|
|
public interface ITask : IId
|
|
{
|
|
string Title { get;}
|
|
DateTime DateIssue { get;}
|
|
DateTime DateDelivery { get;}
|
|
int TeacherId { get; }
|
|
string TeacherName { get; }
|
|
Dictionary<int, IMaterial> TaskMaterials { get; }
|
|
}
|
|
}
|