using Gestor.Model.Domain.Relatorios; using System; using System.Collections.ObjectModel; using System.Runtime.CompilerServices; namespace Gestor.Model.Domain.Relatorios.ApolicePendente { public class ContainerApolicePendente { public string Agrupamento { get; set; } public ObservableCollection Analitico { get; set; } public ObservableCollection Sintetico { get; set; } public ContainerApolicePendente() { } } }