Audit Service

This commit is contained in:
Andre Beging
2022-05-23 10:29:10 +02:00
parent 5961c06004
commit 5d713db83f
14 changed files with 552 additions and 49 deletions

View File

@@ -0,0 +1,23 @@
namespace FoodsharingSiegen.Contracts.Entity
{
public enum AuditType : int
{
None = 0,
// Profile
SaveProfile = 10,
SetOwnPassword = 20,
// Usermanagement
CreateUser = 30,
UpdateUser = 40,
RemoveUser = 50,
SetUserPassword = 60,
// Prospect
CreateProspect = 70,
EditProspect = 80,
AddInteraction = 90,
RemoveInteraction = 100
}
}