tgstation-server 6.12.0
The /tg/station 13 server suite
Loading...
Searching...
No Matches
UserGroupGraphQLTransformer.cs
Go to the documentation of this file.
2{
6 sealed class UserGroupGraphQLTransformer : TransformerBase<UserGroup, GraphQL.Types.UserGroup>
7 {
12 : base(model => new GraphQL.Types.UserGroup
13 {
14 Id = model.Id!.Value,
15 Name = model.Name!,
16 })
17 {
18 }
19 }
20}
ITransformer<TInput, TOutput> for GraphQL.Types.UserGroups.
UserGroupGraphQLTransformer()
Initializes a new instance of the UserGroupGraphQLTransformer class.
Represents a group of Users.
Definition UserGroup.cs:16