summaryrefslogtreecommitdiff
path: root/Gestor.Model/Gestor.Model.Domain.Aggilizador/VinculoDocumento.cs
blob: 9a768f1aef0a9d426297343f8bd84cc2b0ede9f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
namespace Gestor.Model.Domain.Aggilizador;

public class VinculoDocumento
{
	public long Id { get; set; }

	public long IdDocumento { get; set; }

	public long IdPropostaDigital { get; set; }

	public long IdApoliceDigital { get; set; }
}