mirror of
https://github.com/SoDOff-Project/sodoff.git
synced 2025-10-11 08:18:49 -07:00
-Add Ability For Profile Answers To Save -Add WoJS response for ``GetQuestions`` -Add ``Pain`` Mood To Question Data
16 lines
358 B
C#
16 lines
358 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace sodoff.Model
|
|
{
|
|
public class ProfileAnswer
|
|
{
|
|
[Key]
|
|
public int Id { get; set; }
|
|
public int VikingId { get; set; }
|
|
public int QuestionID { get; set; }
|
|
public int AnswerID { get; set; }
|
|
|
|
public virtual Viking Viking { get; set; } = null!;
|
|
}
|
|
}
|