Skip to content
Snippets Groups Projects

add 2 endpoints for report

Merged Enzo Santangelo Dodera requested to merge feature/udelar-reports into develop
Files
3
using System;
using System.Collections.Generic;
using System.Text;
namespace Tsi1.BusinessLayer.Dtos
{
public class TenantCourseDto
{
public TenantCourseDto()
{
Courses = new List<CoursePreviewDto>();
}
public int Id { get; set; }
public string Name { get; set; }
public List<CoursePreviewDto> Courses { get; set; }
}
}
Loading