blob: 60a2b07f8c0220ca81b934dfa66e9a7e3442020e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
using System;
namespace Gestor.Model.Domain.Aggilizador;
public class ParcelaPendente
{
public long Id { get; set; }
public long IdParcela { get; set; }
public string Seguradora { get; set; }
public string Cliente { get; set; }
public string Apolice { get; set; }
public int Parcela { get; set; }
public decimal Valor { get; set; }
public DateTime Vencimento { get; set; }
}
|