blob: 3fbd849505d5ea2ccb4ede04b0c8634906d4d6ef (
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
25
26
27
28
|
namespace Gestor.Model.CalculoWeb.Auto;
public class Fipe
{
public string Codigo { get; set; }
public string Modelo { get; set; }
public string Marca { get; set; }
public string AnoMaximo { get; set; }
public string AnoMinimo { get; set; }
public string Combustivel { get; set; }
public decimal Valor { get; set; }
public decimal ValorAntigo { get; set; }
public string AnoModelo { get; set; }
public int TipoVeiculo { get; set; }
public bool ZeroKm { get; set; }
public int Id { get; set; }
}
|