summaryrefslogtreecommitdiff
path: root/Gestor.Model/Gestor.Model.CalculoWeb.Auto/Caminhao.cs
blob: ade84e5a7d19cb11fcd611ede97f37e21fde1e68 (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
namespace Gestor.Model.CalculoWeb.Auto;

public class Caminhao
{
	public string Carga { get; set; }

	public string Carroceria { get; set; }

	public string Equipamento { get; set; }

	public string GerenciamentoRisco { get; set; }

	public string Uso { get; set; }

	public string RegiaoCirculacao { get; set; }

	public string SeguroCarga { get; set; }

	public string Garagem { get; set; }

	public string ProprioEstado { get; set; }

	public string Periodo { get; set; }

	public int Id { get; set; }
}