summaryrefslogtreecommitdiff
path: root/Codemerx/Gestor.Model/Model.Relatorios/Controle.cs
blob: 63bd5f596deababa110989690592befacec6e112 (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
using System;
using System.Runtime.CompilerServices;

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

		public long Id
		{
			get;
			set;
		}

		public Gestor.Model.Relatorios.Ramo Ramo
		{
			get;
			set;
		}

		public Controle()
		{
		}
	}
}