2025-08-15 09:19:20 +00:00
|
|
|
using System;
|
|
|
|
|
using Volo.Abp.Application.Dtos;
|
|
|
|
|
|
|
|
|
|
namespace Kurs.Platform.Reports
|
|
|
|
|
{
|
|
|
|
|
public class GetReportTemplatesInput : PagedAndSortedResultRequestDto
|
|
|
|
|
{
|
|
|
|
|
public string Filter { get; set; }
|
2025-10-08 11:31:29 +00:00
|
|
|
public Guid CategoryId { get; set; }
|
2025-08-15 09:19:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class GetGeneratedReportsInput : PagedAndSortedResultRequestDto
|
|
|
|
|
{
|
|
|
|
|
public string Filter { get; set; }
|
|
|
|
|
public Guid? TemplateId { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|