mirror of
https://github.com/bitwarden/server
synced 2025-12-10 05:13:48 +00:00
10 lines
253 B
C#
10 lines
253 B
C#
namespace Bit.Api.AdminConsole.Public.Models.Request;
|
|
|
|
public class UpdateGroupIdsRequestModel
|
|
{
|
|
/// <summary>
|
|
/// The associated group ids that this object can access.
|
|
/// </summary>
|
|
public IEnumerable<Guid> GroupIds { get; set; }
|
|
}
|