blob: 36c47db5c33621482d4341402031c118223db0f6 (
plain)
1
2
3
4
5
6
7
8
9
10
|
namespace Gestor.Model.Relatorios;
public class EstipulanteCliente
{
public long IdEstiputante { get; set; }
public string NomeEstipulante { get; set; }
public long IdCliente { get; set; }
}
|