21 lines
501 B
C#
21 lines
501 B
C#
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; }
|
|
string? TaskName { get; }
|
|
DateTime DateCreate { get; }
|
|
int TaskId { get; }
|
|
int StudentId { get; }
|
|
string StudentName { get; }
|
|
Dictionary<int, IInterest> DiyInterests { get; }
|
|
}
|
|
}
|