namespace FoodsharingSiegen.Contracts.Enums
{
///
/// The audit type enum
///
public enum AuditType
{
///
/// The none audit type
///
None = 0,
// Profile
///
/// The save profile audit type
///
SaveProfile = 10,
#region Usermanagement
///
/// The create user audit type
///
CreateUser = 30,
///
/// The update user audit type
///
UpdateUser = 40,
///
/// The remove user audit type
///
RemoveUser = 50,
///
/// The set user password audit type
///
SetUserPassword = 60,
#endregion Usermanagement
#region Prospects
// Prospect
///
/// The create prospect audit type
///
CreateProspect = 70,
///
/// The edit prospect audit type
///
EditProspect = 80,
///
/// The add interaction audit type
///
AddInteraction = 90,
///
/// The remove interaction audit type
///
RemoveInteraction = 100,
///
/// The delete prospect images audit type
///
DeleteProspectImages = 110,
///
/// The view prospect images audit type
///
ViewProspectImages = 120,
///
/// The upload prospect image audit type
///
UploadProspectImage = 130,
///
/// The request password reset audit type
///
RequestPasswordReset = 140,
///
/// The change own password audit type
///
ChangeOwnPassword = 150
#endregion Prospects
}
}