using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using Volo.Abp.Application.Dtos; namespace Erp.Platform.Reports { public class ReportGeneratedDto : FullAuditedEntityDto { public Guid? TemplateId { get; set; } [Required] public string TemplateName { get; set; } [Required] public string GeneratedContent { get; set; } public Dictionary Parameters { get; set; } public ReportTemplateDto ReportTemplate { get; set; } public ReportGeneratedDto() { Parameters = []; } } }