2023-04-03 20:45:33 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace SchoolAgainStudyDataModels.Models
|
|
|
|
|
{
|
|
|
|
|
public interface IDiy : IId
|
|
|
|
|
{
|
|
|
|
|
string Title { get; }
|
|
|
|
|
string Description { get; }
|
2023-04-06 19:54:34 +04:00
|
|
|
|
string TaskName { get; }
|
2023-04-03 20:45:33 +04:00
|
|
|
|
DateTime DateCreate { get; }
|
|
|
|
|
int TaskId { get; }
|
|
|
|
|
int StudentId { get; }
|
2023-04-05 20:53:48 +04:00
|
|
|
|
string StudentName { get; }
|
2023-04-03 20:45:33 +04:00
|
|
|
|
Dictionary<int, IInterest> DiyInterests { get; }
|
|
|
|
|
}
|
|
|
|
|
}
|