Files
TechHelper/Entities/DTO/Grade/GradeResponseDto.cs
SpecialX ac900159ba
Some checks failed
TechAct / explore-gitea-actions (push) Failing after 12s
重构项目结构,移除Assignment相关功能,优化Submission模块
2025-10-09 18:57:28 +08:00

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; }
}
}