CodeLiturgy.Dashboard/BlueWest.Api/RepoGeneratorAttribute.cs

15 lines
257 B
C#

using System;
namespace BlueWest.WebApi
{
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Property)]
public class RepoGeneratorAttribute : Attribute
{
public RepoGeneratorAttribute()
{
}
}
}