mirror of
https://github.com/bitwarden/server
synced 2026-01-09 03:53:42 +00:00
14 lines
319 B
C#
14 lines
319 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Bit.Api.Models.Public.Request
|
|
{
|
|
public class UpdateGroupIdsRequestModel
|
|
{
|
|
/// <summary>
|
|
/// The associated group ids that this object can access.
|
|
/// </summary>
|
|
public IEnumerable<Guid> GroupIds { get; set; }
|
|
}
|
|
}
|