using System.Collections.ObjectModel; namespace Gestor.Model.Domain.Relatorios.Extrato; public class ExtratoComissao { public string Seguradora { get; set; } public string Usuario { get; set; } public ObservableCollection InformacoesExtrato { get; set; } public ObservableCollection DetalhesExtrato { get; set; } }