using System.Collections.Generic; using Gestor.Model.Domain.Relatorios; namespace Gestor.Model.Common; public class ConfiguracaoImpressao { public int TamanhoFonte { get; set; } public List Campos { get; set; } public bool? OrientacaoImpressao { get; set; } }