9 lines
233 B
C#
9 lines
233 B
C#
using System;
|
|
|
|
namespace Svrnty.CQRS.Grpc.Abstractions.Attributes;
|
|
|
|
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct, AllowMultiple = false, Inherited = false)]
|
|
public sealed class GrpcIgnoreAttribute : Attribute
|
|
{
|
|
}
|