tgstation-server 6.16.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 public ICollection<OidcConnection>? OidcConnections { get; set; }
17
21 [ResponseOptions]
22 public PermissionSet? PermissionSet { get; set; }
23
27 [ResponseOptions]
28 public UserGroup? Group { get; set; }
29 }
30}
ICollection< OAuthConnection >? OAuthConnections
List of OAuthConnections associated with the user.
ICollection< OidcConnection >? OidcConnections
List of OidcConnections associated with the user.
UserGroup? Group
The UserGroup asociated with the user, if any.
Represents a set of server permissions.