erp-platform/api/src/Kurs.Platform.Application.Contracts/Reports/GetReportsInput.cs
2025-10-08 14:31:29 +03:00

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