19 lines
381 B
C#
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!;
|
|
|
|
}
|
|
}
|