Files
MileageTraker/Web/Attributes/NoEditLabelAttribute.cs
T
2012-12-24 21:18:41 -05:00

9 lines
196 B
C#

using System;
namespace MileageTraker.Web.Attributes
{
[AttributeUsage(AttributeTargets.Property, AllowMultiple = false, Inherited = true)]
public class NoEditLabelAttribute : Attribute
{
}
}