summaryrefslogtreecommitdiff
path: root/Codemerx/Gestor.Model/Model.Relatorios/EstipulanteCliente.cs
blob: 9738d14208aaa9b2b553c6a1289896a77b8a5d36 (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 EstipulanteCliente
	{
		public long IdCliente
		{
			get;
			set;
		}

		public long IdEstiputante
		{
			get;
			set;
		}

		public string NomeEstipulante
		{
			get;
			set;
		}

		public EstipulanteCliente()
		{
		}
	}
}