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
#endregion Prospects
}
}