13 lines
219 B
C#
13 lines
219 B
C#
using System;
|
|
|
|
namespace Kreta.Core.CustomAttributes
|
|
{
|
|
[AttributeUsage(AttributeTargets.Property)]
|
|
public class IgnoreAttribute : Attribute
|
|
{
|
|
public IgnoreAttribute()
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|