We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59d24f1 commit 85ecc6fCopy full SHA for 85ecc6f
src/Seq.Api/Model/Security/RoleEntity.cs
@@ -29,6 +29,11 @@ public class RoleEntity : Entity
29
/// <summary>
30
/// Permissions granted to users in the role.
31
/// </summary>
32
- public HashSet<Permission> Permissions { get; set; } = new HashSet<Permission>();
+ public HashSet<Permission> Permissions { get; set; } = new();
33
+
34
+ /// <summary>
35
+ /// Optionally, an extended description of the role.
36
+ /// </summary>
37
+ public string Description { get; set; }
38
}
39
0 commit comments