Files
raven/server/AyaNova/biz/ImportableBizObjectAttribute.cs
2022-03-23 00:50:44 +00:00

16 lines
456 B
C#

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