dotnet-cqrs/Svrnty.CQRS.Grpc.Abstractions/Attributes/GrpcIgnoreAttribute.cs

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
{
}