Class Group
Represents a player's group.
Inheritance
System.Object
Group
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Exiled.Permissions.Features
Assembly: Exiled.Permissions.dll
Syntax
public class Group
Properties
| Improve this Doc View SourceCombinedPermissions
Gets the combined permissions of the group plus all inherited groups.
Declaration
[YamlIgnore]
public List<string> CombinedPermissions { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<System.String> |
Inheritance
Gets or sets the group inheritance.
Declaration
public List<string> Inheritance { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<System.String> |
IsDefault
Gets or sets a value indicating whether group is the default one or not.
Declaration
[YamlMember(Alias = "default")]
public bool IsDefault { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Permissions
Gets or sets the group permissions.
Declaration
public List<string> Permissions { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<System.String> |