quizapp/FWLAZ_Web/Data/Answer.cs
2024-09-01 21:12:09 +02:00

20 lines
435 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FWLAZ_Web.Data
{
public class Answer
{
public int Id { get; set; }
public string Position { get; set; } = null!;
public string Text { get; set; } = null!;
public bool IsCorrect { get; set; }
public virtual Question Question { get; set; } = null!;
}
}