QuestionImage.cs 320 B

123456789101112131415
  1. using System;
  2. using System.Collections.Generic;
  3. namespace EntranseTesting.Models;
  4. public partial class QuestionImage
  5. {
  6. public int Id { get; set; }
  7. public int IdQuestion { get; set; }
  8. public byte[] Image { get; set; } = null!;
  9. public virtual Question IdQuestionNavigation { get; set; } = null!;
  10. }