CodeLiturgy.Dashboard/BlueWest.Api/EfAddToListMethodAttribute.cs

16 lines
355 B
C#
Raw Normal View History

2022-08-24 19:56:51 +03:00
using System;
namespace BlueWest.WebApi
{
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Property)]
public class EfAddToListMethodAttribute : Attribute
{
public EfAddToListMethodAttribute( Type keyType = null, string keyName = "Id", Type updateDto = null, Type returnType = null)
{
}
}
}