10 lines
196 B
C#
10 lines
196 B
C#
using Connected.Data.EntityProtection;
|
|
|
|
namespace Connected.Data.DataProtection
|
|
{
|
|
public interface IEntityProtectionService
|
|
{
|
|
Task Invoke<TEntity>(EntityProtectionArgs<TEntity> args);
|
|
}
|
|
}
|