UserResponseChooseAnswer.cs 452 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. namespace EntranseTesting.Models;
  4. public partial class UserResponseChooseAnswer
  5. {
  6. public int Id { get; set; }
  7. public int IdResponse { get; set; }
  8. public int IdElement { get; set; }
  9. public bool? Usercorrectly { get; set; }
  10. public virtual ElementOfChoose IdElementNavigation { get; set; } = null!;
  11. public virtual UserResponse IdResponseNavigation { get; set; } = null!;
  12. }