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