CodeLiturgy.Dashboard/BlueWest.Api/RepoGeneratorAttribute.cs

15 lines
257 B
C#
Raw Normal View History

2022-08-22 18:02:48 +03:00
using System;
namespace BlueWest.WebApi
{
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Property)]
public class RepoGeneratorAttribute : Attribute
{
public RepoGeneratorAttribute()
{
}
}
}