Huge work

This commit is contained in:
Karolis Kundrotas
2021-10-25 22:00:01 +03:00
parent c3bb8983ef
commit aff6f8df82
26 changed files with 578 additions and 68 deletions

View File

@@ -18,20 +18,19 @@ namespace KTUSAPS.Data.Model
[Required]
[MaxLength]
public string ProblemEn { get; set; }
[MaxLength]
public string ResponseLt { get; set; }
[MaxLength]
public string ResponseEn { get; set; }
public DateTime Created { get; set; }
public int? IssueId { get; set; }
public Issue Issue { get; set; }
public virtual Issue Issue { get; set; }
public int? SolutionId { get; set; }
public Solution Solution { get; set; }
public virtual Solution Solution { get; set; }
public ICollection<Vote> Votes { get; set; }
public PublishedProblem()
{
Created = DateTime.Now;
}
}
}