minor completion model changes
This commit is contained in:
parent
6e5ca87a89
commit
0f2965db7d
1 changed files with 3 additions and 1 deletions
|
|
@ -4,7 +4,9 @@ public class Completion
|
||||||
{
|
{
|
||||||
public int Id { get; set; }
|
public int Id { get; set; }
|
||||||
public int SurveyId { get; set; }
|
public int SurveyId { get; set; }
|
||||||
public DateTime FinishedAt { get; set; }
|
public DateTime FinishedAt { get; set; } = DateTime.UtcNow;
|
||||||
|
|
||||||
|
public int? CompletedBy { get; set; }
|
||||||
|
|
||||||
public Survey Survey { get; set; }
|
public Survey Survey { get; set; }
|
||||||
public ICollection<Answer> Answers { get; set; }
|
public ICollection<Answer> Answers { get; set; }
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue