using System; using System.Runtime.CompilerServices; namespace Gestor.Model.Domain.Aggilizador { public class ArquivoVinculo { public int Ano { get; set; } public byte[] Arquivo { get; set; } public string Chave { get; set; } public long Id { get; set; } public long IdVinculo { get; set; } public string Storage { get; set; } public ArquivoVinculo() { } } }