2023-04-03 21:06:23 +04:00
|
|
|
|
using SchoolAgainStudyDataModels.Models;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace SchoolAgainStudyContracts.BindingModel
|
|
|
|
|
{
|
|
|
|
|
public class DiyBindingModel : IDiy
|
|
|
|
|
{
|
|
|
|
|
public string Title { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
public string Description { get; set; } = string.Empty;
|
|
|
|
|
|
2023-04-05 22:00:51 +04:00
|
|
|
|
public DateTime DateCreate { get; set; }
|
2023-04-03 21:06:23 +04:00
|
|
|
|
|
|
|
|
|
public int TaskId { get; set; }
|
|
|
|
|
public string TaskName { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
public int StudentId { get; set; }
|
2023-04-05 22:00:51 +04:00
|
|
|
|
public string StudentName { get; set; } = string.Empty;
|
2023-04-03 21:06:23 +04:00
|
|
|
|
|
|
|
|
|
public Dictionary<int, IInterest> DiyInterests { get; set; } = new();
|
|
|
|
|
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|