summaryrefslogtreecommitdiff
path: root/Gestor.Model/Gestor.Model.Domain.Common/ArquivoDigital.cs
blob: e6f71ed7ebeb1aa2bbb6373523ecf3150ea945d3 (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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
using System;
using Gestor.Model.Domain.Generic;

namespace Gestor.Model.Domain.Common;

public class ArquivoDigital : DomainBase
{
	private string _descricao;

	private string _extensao;

	public string Descricao
	{
		get
		{
			return _descricao?.ToUpper();
		}
		set
		{
			_descricao = value;
		}
	}

	public string Extensao
	{
		get
		{
			return _extensao?.ToUpper().Trim();
		}
		set
		{
			_extensao = value;
		}
	}

	public byte[] Arquivo { get; set; }

	public long IdCliente { get; set; }

	public long IdDocumento { get; set; }

	public long IdItem { get; set; }

	public long IdParcela { get; set; }

	public long IdSinistro { get; set; }

	public long IdSeguradora { get; set; }

	public long IdVendedor { get; set; }

	public long IdUsuario { get; set; }

	public long IdExtrato { get; set; }

	public long IdEmpresa { get; set; }

	public long IdLancamento { get; set; }

	public long IdFornecedor { get; set; }

	public long IdProspeccao { get; set; }

	public long IdSocio { get; set; }

	public long IdTarefa { get; set; }

	public long IdNotaFiscal { get; set; }

	public long IdEstipulante { get; set; }

	public bool Excluido { get; set; }

	public long UsuarioCriacao { get; set; }

	public long UsuarioAtualizacao { get; set; }

	public DateTime? DataCriacao { get; set; }

	public DateTime? DataAtualizacao { get; set; }

	public DateTime? UltimoAcesso { get; set; }

	public int QuantidadeAcesso { get; set; }

	public Guid? AzureGuid { get; set; }

	public string AzureStorage { get; set; }
}