Category.cs 413 B

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