using System; using System.Collections.Generic; namespace Entities.DTO { public class SchoolResponseDto { public int SchoolId { get; set; } public string SchoolName { get; set; } public string Address { get; set; } public DateTime CreateTime { get; set; } // Navigation properties for response public ICollection Grades { get; set; } } }