kreta/Kreta.Core/CustomAttributes/IgnoreAttribute.cs
2024-03-13 00:33:46 +01:00

13 lines
219 B
C#

using System;
namespace Kreta.Core.CustomAttributes
{
[AttributeUsage(AttributeTargets.Property)]
public class IgnoreAttribute : Attribute
{
public IgnoreAttribute()
{
}
}
}