summaryrefslogtreecommitdiff
path: root/Gestor.Common/Gestor.Common.Helpers/HiddenAttribute.cs
blob: 236be6f0868c26a58fc626d9ef85cafb906ae325 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
using System;

namespace Gestor.Common.Helpers
{
	[AttributeUsage(AttributeTargets.All)]
	public class HiddenAttribute : Attribute
	{
		public HiddenAttribute()
		{
		}
	}
}