2022-12-11 22:03:53 +01:00

10 lines
196 B
C#

using Connected.Data.EntityProtection;
namespace Connected.Data.DataProtection
{
public interface IEntityProtectionService
{
Task Invoke<TEntity>(EntityProtectionArgs<TEntity> args);
}
}