summaryrefslogtreecommitdiff
path: root/Gestor.Model/Model.Relatorios/Documento.cs
blob: f40e84d8b36c19ed85d5b2c4978688aebd33a95f (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
29
30
31
32
33
34
35
36
37
using System;
using System.Collections.Generic;
using System.Runtime.CompilerServices;

namespace Gestor.Model.Relatorios
{
	public class Documento
	{
		public Gestor.Model.Relatorios.Controle Controle
		{
			get;
			set;
		}

		public long Id
		{
			get;
			set;
		}

		public int? Ordem
		{
			get;
			set;
		}

		public IList<Vendedor> Vendedores
		{
			get;
			set;
		}

		public Documento()
		{
		}
	}
}