summaryrefslogtreecommitdiff
path: root/Gestor.Model/Model.Common/Operacao.cs
blob: 1970e862699834e697c0483092f9f38ed4ea0281 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
using System;
using System.ComponentModel;

namespace Gestor.Model.Common
{
	public enum Operacao
	{
		[Description(" AND ")]
		And,
		[Description(" OR ")]
		Or
	}
}