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

namespace Gestor.Common.Helpers;

[AttributeUsage(AttributeTargets.All)]
public class OrderAttribute : Attribute
{
	public int OrderProperty { get; private set; }

	public OrderAttribute(int orderProperty)
	{
		OrderProperty = orderProperty;
	}
}