summaryrefslogtreecommitdiff
path: root/Gestor.Model/Gestor.Model.Domain.Relatorios.Extrato/Extrato.cs
blob: 250fa6f11f8913eeca4a1a5eb2618b8de9a01d02 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
using System;
using System.ComponentModel;
using Gestor.Model.Attributes;
using Gestor.Model.Common;
using Gestor.Model.Domain.Common;
using Gestor.Model.Domain.Seguros;

namespace Gestor.Model.Domain.Relatorios.Extrato;

public class Extrato
{
	public bool Selecionado { get; set; }

	[Description("ID")]
	public long Id { get; set; }

	[Description("BRUTO")]
	public decimal? Bruto { get; set; }

	[Description("DATA")]
	public DateTime? Data { get; set; }

	[Description("DATA DE CRÉDITO")]
	public DateTime? DataCredito { get; set; }

	[Description("HISTORICO")]
	public string Historico { get; set; }

	[Description("IR")]
	public decimal? Ir { get; set; }

	[Description("ISS")]
	public decimal? Iss { get; set; }

	[Description("LIQUIDO")]
	public decimal? Liquido { get; set; }

	[Description("NUMERO")]
	public string Numero { get; set; }

	[Description("OBSERVAÇÃO")]
	public string Observacao { get; set; }

	[Description("OUTRO")]
	public decimal? Outro { get; set; }

	[Tipo("ENUM")]
	[Description("STATUS")]
	public StatusExtrato Status { get; set; }

	public Seguradora Seguradora { get; set; }

	public Empresa Empresa { get; set; }
}