blob: b7bdf2426e865627214a38a1d892827dc67972df (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
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; }
}
|