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

13 lines
267 B
C#
Raw Normal View History

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