15 lines
257 B
C#
15 lines
257 B
C#
|
using System;
|
||
|
|
||
|
namespace BlueWest.WebApi
|
||
|
{
|
||
|
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Property)]
|
||
|
public class RepoGeneratorAttribute : Attribute
|
||
|
{
|
||
|
public RepoGeneratorAttribute()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|