erp-platform/api/src/Kurs.Platform.Application.Contracts/Reports/GenerateReportDto.cs
2025-08-15 15:21:22 +03:00

19 lines
394 B
C#

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()
{
Parameters = [];
}
}
}