Skip to content
Snippets Groups Projects
Commit 35076524 authored by esantangelo's avatar esantangelo
Browse files

add date column to activity entity

parent fcb31abd
No related branches found
No related tags found
1 merge request!39Feature/fix evaluations
......@@ -9,6 +9,7 @@ namespace Tsi1.BusinessLayer.Dtos
public string Name { get; set; }
public bool IsVideoConference { get; set; }
public DateTime Date { get; set; }
public int CourseId { get; set; }
......
......@@ -8,6 +8,8 @@ namespace Tsi1.BusinessLayer.Dtos
{
public int Id { get; set; }
public DateTime Date { get; set; }
public string Name { get; set; }
public bool IsVideoConference { get; set; }
......
......@@ -8,6 +8,8 @@ namespace Tsi1.BusinessLayer.Dtos
{
public string Name { get; set; }
public DateTime Date { get; set; }
public bool IsVideoConference { get; set; }
public EvaluationModifyDto Evaluation { get; set; }
......
using System;
using System.Collections.Generic;
using System.Text;
using System.Text.Json.Serialization;
namespace Tsi1.BusinessLayer.Dtos
{
......@@ -8,6 +9,7 @@ namespace Tsi1.BusinessLayer.Dtos
{
public int EvaluationTypeId { get; set; }
[JsonIgnore]
public bool IsCompleted { get; set; }
}
}
......@@ -15,6 +15,8 @@ namespace Tsi1.DataLayer.Entities
public string Name { get; set; }
public DateTime Date { get; set; }
public bool IsVideoConference { get; set; }
public int? EvaluationId { get; set; }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment