11 lines
177 B
C#
11 lines
177 B
C#
using System;
|
|
|
|
namespace KCM.Attributes
|
|
{
|
|
[AttributeUsage(AttributeTargets.Class, AllowMultiple = false)]
|
|
public class NoServerRelayAttribute : Attribute
|
|
{
|
|
}
|
|
}
|
|
|