blob: 0eb555270f65770993197038a1548ac680448947 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
namespace Gestor.Model.Domain.Aggilizador;
public class ArquivoVinculo
{
public long Id { get; set; }
public long IdVinculo { get; set; }
public byte[] Arquivo { get; set; }
public string Chave { get; set; }
public int Ano { get; set; }
public string Storage { get; set; }
}
|