erp-platform/api/src/Kurs.Platform.Application.Contracts/Reports/GenerateReportDto.cs

20 lines
394 B
C#
Raw Normal View History

2025-08-15 09:19:20 +00:00
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
namespace Kurs.Platform.Reports
{
public class GenerateReportDto
{
[Required]
public Guid TemplateId { get; set; }
public Dictionary<string, string> Parameters { get; set; }
public GenerateReportDto()
{
2025-08-15 12:21:22 +00:00
Parameters = [];
2025-08-15 09:19:20 +00:00
}
}
}