17 lines
435 B
C#
17 lines
435 B
C#
using System;
|
|
using Volo.Abp.Application.Dtos;
|
|
|
|
namespace Kurs.Platform.Reports
|
|
{
|
|
public class GetReportTemplatesInput : PagedAndSortedResultRequestDto
|
|
{
|
|
public string Filter { get; set; }
|
|
public Guid CategoryId { get; set; }
|
|
}
|
|
|
|
public class GetGeneratedReportsInput : PagedAndSortedResultRequestDto
|
|
{
|
|
public string Filter { get; set; }
|
|
public Guid? TemplateId { get; set; }
|
|
}
|
|
}
|