Fix issue with UserGroup ids in the spec

This commit is contained in:
Jordan Brown
2021-02-20 22:34:39 -05:00
parent dff49a4350
commit c74655bbe1
@@ -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>