blob: 097a7bcf3864880e6cff18b13d2b0bd60d8f345b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
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,
UserBookmarkManagement,
}
}
|