summaryrefslogtreecommitdiff
path: root/Gestor.Common/Gestor.Common.Helpers/HiddenAttribute.cs
blob: c6645260da3dfacd829f2accc49ab3ff946e9609 (plain)
1
2
3
4
5
6
7
8
using System;

namespace Gestor.Common.Helpers;

[AttributeUsage(AttributeTargets.All)]
public class HiddenAttribute : Attribute
{
}