blob: 03ccc65e5ca887765a04cfa8b233850d44d852a2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
using System;
using System.Runtime.CompilerServices;
namespace Gestor.Common.Helpers
{
public static class DataBaseParameters
{
public static bool NovoGestor
{
get;
set;
}
}
}
|