Group.cs 419 B

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