CodeLiturgy.Dashboard/BlueWest.Api/Context/EfAddUpdateMethodsAttribute.cs

11 lines
327 B
C#
Raw Normal View History

using System;
using System.Linq.Expressions;
using BlueWest.Data;
namespace BlueWest.WebApi.Context;
[AttributeUsage(AttributeTargets.Property)]
public class EfAddUpdateMethodsAttribute : Attribute
{
public EfAddUpdateMethodsAttribute(Type returnType, Type updateType, string keyPropertyName, Type keyPropertyType) { }
}