using System; using System.Collections.Generic; namespace Entities.DTO { public class SubjectResponseDto { public Guid Id { get; set; } public string Name { get; set; } public string Description { get; set; } // Navigation properties for response public int QuestionTypeCount { get; set; } public int QuestionCount { get; set; } public int TeacherCount { get; set; } public List QuestionTypeNames { get; set; } = new List(); public List TeacherNames { get; set; } = new List(); } }