tgstation-server 6.8.0
The /tg/station 13 server suite
Loading...
Searching...
No Matches
UserApiBase.cs
Go to the documentation of this file.
1using System.Collections.Generic;
2
4{
6 public abstract class UserApiBase : UserModelBase
7 {
11 public ICollection<OAuthConnection>? OAuthConnections { get; set; }
12
16 [ResponseOptions]
17 public PermissionSet? PermissionSet { get; set; }
18
22 [ResponseOptions]
23 public UserGroup? Group { get; set; }
24 }
25}
ICollection< OAuthConnection >? OAuthConnections
List of OAuthConnections associated with the user.
Definition: UserApiBase.cs:11
UserGroup? Group
The UserGroup asociated with the user, if any.
Definition: UserApiBase.cs:23
Represents a group of users.
Definition: UserGroup.cs:7
Represents a set of server permissions.