20 lines
424 B
C#
20 lines
424 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 = new Dictionary<string, string>();
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|