18 lines
407 B
C#
18 lines
407 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; }
|
|||
|
Dictionary<int, IMaterial> TaskMaterials { get; }
|
|||
|
}
|
|||
|
}
|