17 lines
410 B
C#
17 lines
410 B
C#
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<GradeDto> Grades { get; set; }
|
|
}
|
|
}
|