18 lines
445 B
C#
18 lines
445 B
C#
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<ClassDto> Responses { get; set; }
|
|
}
|
|
}
|