CodeLiturgy.Dashboard/BlueWest.Api/Context/Extensions/EfGetManyAttribute.cs

12 lines
227 B
C#

using System;
namespace BlueWest.WebApi.EF;
[AttributeUsage(AttributeTargets.Property)]
public class EfGetManyAttribute : Attribute
{
public EfGetManyAttribute(Type returnType, string keyMemberName)
{
}
}