1
0
mirror of https://github.com/bitwarden/server synced 2026-01-09 03:53:42 +00:00
Files
server/src/Api/Models/Public/Request/UpdateGroupIdsRequestModel.cs
2021-12-14 16:05:07 +01:00

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; }
}
}