summaryrefslogtreecommitdiff
path: root/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Configuracoes/ConfiguracaoSistemaDb.cs
blob: 5177d60e424e367347372277b7a610be3762a272 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
using Gestor.Infrastructure.Entities.Generic;
using Gestor.Model.Common;
using System;
using System.Runtime.CompilerServices;

namespace Gestor.Infrastructure.Entities.Configuracoes
{
	public class ConfiguracaoSistemaDb : EntityBase
	{
		public virtual Gestor.Model.Common.Configuracao Configuracao
		{
			get;
			set;
		}

		public ConfiguracaoSistemaDb()
		{
		}
	}
}