CodeLiturgy.Dashboard/BlueWest.Api/EFAddMethods.cs

12 lines
229 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 EFAddMethods : Attribute
2022-08-22 18:02:48 +03:00
{
2022-08-23 19:48:16 +03:00
public EFAddMethods(Type createDto = null) { }
2022-08-22 18:02:48 +03:00
}
}