Files
2024-08-31 12:07:21 +03:00

30 lines
736 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Text.Json.Serialization;
using System.Threading.Tasks;
namespace ProfessionalProfile.Domain
{
public class AssessmentTest
{
public int assessmentTestId { get; set;}
public string testName { get; set; }
public int userId { get; set; }
public string description { get; set; }
public int skillid { get; set; }
// Navigation properties
[JsonIgnore]
public virtual User ?User { get; set; }
[JsonIgnore]
public virtual Skill ?Skill { get; set; }
[JsonIgnore]
public virtual AssessmentResult ?AssessmentResult { get; set; }
}
}