sodoff/src/Model/ProfileAnswer.cs
Alan Moon cc802043ec Profile Answers
-Add Ability For Profile Answers To Save
-Add WoJS response for ``GetQuestions``
-Add ``Pain`` Mood To Question Data
2024-03-02 17:36:29 +00:00

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