summaryrefslogtreecommitdiff
path: root/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/CategoriaTarefaDb.cs
blob: ffc907e95e3e3afe37609fe29ee43189e710ee03 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
using Gestor.Infrastructure.Entities.Generic;
using System;
using System.Runtime.CompilerServices;

namespace Gestor.Infrastructure.Entities.Ferramentas
{
	public class CategoriaTarefaDb : EntityBase
	{
		public virtual string Descricao
		{
			get;
			set;
		}

		public CategoriaTarefaDb()
		{
		}
	}
}