ElementOfChoose.cs 500 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. namespace EntranseTesting.Models;
  4. public partial class ElementOfChoose
  5. {
  6. public int Id { get; set; }
  7. public int IdQuestion { get; set; }
  8. public string Name { get; set; } = null!;
  9. public bool Correctly { get; set; }
  10. public virtual Question IdQuestionNavigation { get; set; } = null!;
  11. public virtual ICollection<UserResponseChooseAnswer> UserResponseChooseAnswers { get; set; } = new List<UserResponseChooseAnswer>();
  12. }