Progresss
This commit is contained in:
@@ -4,6 +4,7 @@ using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Text.Json.Serialization;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace KTUSAPS.Data.Model
|
||||
@@ -22,10 +23,13 @@ namespace KTUSAPS.Data.Model
|
||||
public DateTime Created { get; set; }
|
||||
|
||||
public int? IssueId { get; set; }
|
||||
[JsonIgnore]
|
||||
public virtual Issue Issue { get; set; }
|
||||
|
||||
public int? SolutionId { get; set; }
|
||||
[JsonIgnore]
|
||||
public virtual Solution Solution { get; set; }
|
||||
[JsonIgnore]
|
||||
public virtual HashSet<Vote> Votes { get; set; }
|
||||
|
||||
public PublishedProblem()
|
||||
|
||||
Reference in New Issue
Block a user