blob: 1404cdcdfcf14eb469020792c721c9286452e077 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
namespace Timeline.Services.User
{
public enum UserPermission
{
/// <summary>
/// This permission allows to manage user (creating, deleting or modifying).
/// </summary>
UserManagement,
/// <summary>
/// This permission allows to view and modify all timelines.
/// </summary>
AllTimelineManagement,
/// <summary>
/// This permission allow to add or remove highlight timelines.
/// </summary>
HighlightTimelineManagement
}
}
|