namespace Timeline.Services.User
{
public enum UserPermission
{
///
/// This permission allows to manage user (creating, deleting or modifying).
///
UserManagement,
///
/// This permission allows to view and modify all timelines.
///
AllTimelineManagement,
///
/// This permission allow to add or remove highlight timelines.
///
HighlightTimelineManagement
}
}