diff options
Diffstat (limited to 'Gestor.Model/Gestor.Model.Common/ConfiguracaoImpressao.cs')
| -rw-r--r-- | Gestor.Model/Gestor.Model.Common/ConfiguracaoImpressao.cs | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Gestor.Model/Gestor.Model.Common/ConfiguracaoImpressao.cs b/Gestor.Model/Gestor.Model.Common/ConfiguracaoImpressao.cs new file mode 100644 index 0000000..b7bdf24 --- /dev/null +++ b/Gestor.Model/Gestor.Model.Common/ConfiguracaoImpressao.cs @@ -0,0 +1,13 @@ +using System.Collections.Generic; +using Gestor.Model.Domain.Relatorios; + +namespace Gestor.Model.Common; + +public class ConfiguracaoImpressao +{ + public int TamanhoFonte { get; set; } + + public List<ParametrosRelatorio> Campos { get; set; } + + public bool? OrientacaoImpressao { get; set; } +} |