summaryrefslogtreecommitdiff
path: root/Gestor.Model/Gestor.Model.Domain.Financeiro.Relatorios/FiltroFinanceiro.cs
blob: c253c068480f4307d8e674befc564c0fbc0a4d4e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
using System;
using System.Collections.Generic;

namespace Gestor.Model.Domain.Financeiro.Relatorios;

public class FiltroFinanceiro
{
	public DateTime Inicio { get; set; }

	public DateTime Fim { get; set; }

	public List<long> Centro { get; set; }

	public List<long> Plano { get; set; }

	public List<long> Planos { get; set; }

	public List<long> Conta { get; set; }

	public string Referencia { get; set; }
}