summaryrefslogtreecommitdiff
path: root/Gestor.Model/Gestor.Model.Relatorios/Documento.cs
blob: f88f09ccf39739359d8ae55922defa7bd499efe3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using System.Collections.Generic;

namespace Gestor.Model.Relatorios;

public class Documento
{
	public long Id { get; set; }

	public Controle Controle { get; set; }

	public IList<Vendedor> Vendedores { get; set; }

	public int? Ordem { get; set; }
}