19 lines
394 B
C#
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 = [];
|
|
}
|
|
}
|
|
}
|