CodeLiturgy.Dashboard/BlueWest.Api/EfUpdateMethods.cs

12 lines
235 B
C#
Raw Normal View History

2022-08-22 18:02:48 +03:00
using System;
namespace BlueWest.WebApi
{
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Property)]
2022-08-23 19:48:16 +03:00
public class EFUpdateMethods : Attribute
2022-08-22 18:02:48 +03:00
{
2022-08-23 19:48:16 +03:00
public EFUpdateMethods(Type updateDto = null) { }
2022-08-22 18:02:48 +03:00
}
}