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() { } } }