Files
raven/server/AyaNova/biz/ReportableBizObjectAttribute.cs
2021-09-03 15:15:09 +00:00

16 lines
456 B
C#

using System;
namespace AyaNova.Biz
{
/// <summary>
/// Marker attribute indicating that an object is a reportable type
/// Used in <see cref="AyaType"/>
/// </summary>
[AttributeUsage(AttributeTargets.All)]
public class ReportableBizObjectAttribute : Attribute
{
//No code required, it's just a marker
//https://docs.microsoft.com/en-us/dotnet/standard/attributes/writing-custom-attributes
}
}//eons