Skip to content

Commit bad2ace

Browse files
authored
added html and url fields to evaluation (#32)
* added html and url fields to evaluation
1 parent 7e9d4ad commit bad2ace

File tree

5 files changed

+1297
-0
lines changed

5 files changed

+1297
-0
lines changed

Cite.Api.Data/Models/Evaluation.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ public class EvaluationEntity : BaseEntity
2626
public bool ShowPastSituationDescriptions { get; set; }
2727
public bool DisplayCommentTextBoxes { get; set; }
2828
public RightSideDisplay RightSideDisplay { get; set; }
29+
public string RightSideHtmlBlock { get; set; }
30+
public string RightSideEmbeddedUrl { get; set; }
2931
public virtual ICollection<TeamEntity> Teams { get; set; } = new HashSet<TeamEntity>();
3032
public virtual ICollection<MoveEntity> Moves { get; set; } = new HashSet<MoveEntity>();
3133
public ICollection<SubmissionEntity> Submissions { get; set; } = new List<SubmissionEntity>();

0 commit comments

Comments
 (0)