Files
FoodsharingOnboarding/FoodsharingSiegen.Contracts/Entity/AuditType.cs
Andre Beging 5d713db83f Audit Service
2022-05-23 10:29:10 +02:00

23 lines
482 B
C#

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
}
}