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 Vendedores { get; set; } public Documento() { } } }