mirror of
https://github.com/tgstation/tgstation-server.git
synced 2026-08-27 15:07:03 +01:00
Fix issue with UserGroup ids in the spec
This commit is contained in:
@@ -5,6 +5,14 @@ namespace Tgstation.Server.Api.Models.Internal
|
||||
/// </summary>
|
||||
public class UserGroup : NamedEntity
|
||||
{
|
||||
/// <inheridoc />
|
||||
[RequestOptions(FieldPresence.Required)]
|
||||
public override long? Id
|
||||
{
|
||||
get => base.Id;
|
||||
set => base.Id = value;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// The <see cref="Models.PermissionSet"/> of the <see cref="UserGroup"/>.
|
||||
/// </summary>
|
||||
|
||||
Reference in New Issue
Block a user