blob: 67c3fdb0016933689c13e5a8170d882465d9afc6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
using System;
using System.Collections.Generic;
using System.ComponentModel;
using Gestor.Model.Attributes;
using Gestor.Model.Domain.Seguros;
namespace Gestor.Model.Domain.BI;
public class AtalhosCliente
{
public List<Cliente> Clientes { get; set; }
[Tipo("QUANTIDADE")]
[Description("ANIVERSARIANTES")]
public int Aniversariantes { get; set; }
[Tipo("QUANTIDADE")]
[Description("VENCIMENTO CNH")]
public int VencimentoCnh { get; set; }
public DateTime Inicio { get; set; }
public DateTime Fim { get; set; }
}
|