forked from zxl/LaboratoryProtection
10 lines
192 B
C#
10 lines
192 B
C#
|
using System;
|
||
|
|
||
|
namespace MessagePipe
|
||
|
{
|
||
|
[AttributeUsage(AttributeTargets.Class, AllowMultiple = false, Inherited = false)]
|
||
|
public class IgnoreAutoRegistration : Attribute
|
||
|
{
|
||
|
}
|
||
|
}
|