2024-09-01 21:12:09 +02:00

19 lines
381 B
C#

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