DocSpace-buildtools/common/ASC.Textile/BlockModifierAttribute.cs

10 lines
219 B
C#
Raw Normal View History

2022-02-17 09:08:01 +00:00
namespace Textile;
[AttributeUsage(AttributeTargets.Class, AllowMultiple = false, Inherited = false)]
public sealed class BlockModifierAttribute : Attribute
2019-08-19 12:35:39 +00:00
{
2022-02-17 09:08:01 +00:00
public BlockModifierAttribute()
2019-08-19 12:35:39 +00:00
{
}
}