mirror of
https://github.com/SoDOff-Project/sodoff.git
synced 2025-11-27 18:16:53 -08:00
20 lines
459 B
C#
20 lines
459 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace sodoff.Model
|
|
{
|
|
public class ProfileAnswer
|
|
{
|
|
[Key]
|
|
[JsonIgnore]
|
|
public int Id { get; set; }
|
|
[JsonIgnore]
|
|
public int VikingId { get; set; }
|
|
public int QuestionID { get; set; }
|
|
public int AnswerID { get; set; }
|
|
|
|
[JsonIgnore]
|
|
public virtual Viking Viking { get; set; } = null!;
|
|
}
|
|
}
|