blob: 42a25cbee8be40dd24fe561970f3a55e7b3a4cae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
using System;
using Gestor.Model.Domain.Seguros;
namespace Gestor.Model.Common;
public class StatusDocumentoAssinado
{
public bool Selecionado { get; set; }
public long Id { get; set; }
public string Documento { get; set; }
public StatusAssinatura Status { get; set; }
public DateTime? Envio { get; set; }
public Usuario Usuario { get; set; }
}
|