Files
raven/server/AyaNova/biz/AttachableAttribute.cs
2018-06-28 23:41:48 +00:00

16 lines
447 B
C#

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