From 225aa1499e37faf9d38257caabbadc68d78b427e Mon Sep 17 00:00:00 2001 From: Lucas Faria Mendes Date: Mon, 30 Mar 2026 12:29:41 -0300 Subject: decompiler.com --- .../Gestor.Application.Model/SinteticoSource.cs | 42 ++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 Decompiler/Gestor.Application.Model/SinteticoSource.cs (limited to 'Decompiler/Gestor.Application.Model/SinteticoSource.cs') diff --git a/Decompiler/Gestor.Application.Model/SinteticoSource.cs b/Decompiler/Gestor.Application.Model/SinteticoSource.cs new file mode 100644 index 0000000..4e179a7 --- /dev/null +++ b/Decompiler/Gestor.Application.Model/SinteticoSource.cs @@ -0,0 +1,42 @@ +using System; +using System.Collections.Generic; +using System.Collections.ObjectModel; +using System.ComponentModel; +using System.Runtime.CompilerServices; +using Gestor.Model.Domain.Relatorios; +using Gestor.Model.Domain.Seguros; +using LiveCharts; + +namespace Gestor.Application.Model; + +public class SinteticoSource : INotifyPropertyChanged +{ + public bool Mostrar { get; set; } + + public string Titulo { get; set; } + + public ObservableCollection Lista { get; set; } + + public SeriesCollection Colecao { get; set; } + + public string Quantidade { get; set; } + + public string Valor { get; set; } + + public List Documentos { get; set; } + + public List Parcelas { get; set; } + + public List Clientes { get; set; } + + public DateTime? DateStart { get; set; } + + public DateTime? DateFinal { get; set; } + + public event PropertyChangedEventHandler PropertyChanged; + + public void OnPropertyChanged([CallerMemberName] string name = "") + { + this.PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(name)); + } +} -- cgit v1.2.3