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