using System; using System.Collections.Generic; namespace Entities.DTO { public class GradeResponseDto { public int Id { get; set; } public int SchoolId { get; set; } public string SchoolName { get; set; } public string GradeName { get; set; } public int GradeLevel { get; set; } // Navigation properties for response public ICollection Responses { get; set; } } }