23 lines
482 B
C#
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
|
|
}
|
|
} |