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 TaskMaterials { get; } } }