sodoff/src/Model/ProfileAnswer.cs
2025-08-11 16:54:16 +02:00

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!;
}
}