20 lines
600 B
C#
20 lines
600 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Entities.DTO
|
|
{
|
|
public class SubjectResponseDto
|
|
{
|
|
public Guid Id { get; set; }
|
|
public string Name { get; set; }
|
|
public string Description { get; set; }
|
|
|
|
// Navigation properties for response
|
|
public int QuestionTypeCount { get; set; }
|
|
public int QuestionCount { get; set; }
|
|
public int TeacherCount { get; set; }
|
|
public List<string> QuestionTypeNames { get; set; } = new List<string>();
|
|
public List<string> TeacherNames { get; set; } = new List<string>();
|
|
}
|
|
}
|