1
0
mirror of https://github.com/bitwarden/server synced 2025-12-23 03:33:35 +00:00
Files
server/src/Api/Models/Public/Request/UpdateMemberIdsRequestModel.cs
2022-08-29 14:53:16 -04:00

10 lines
247 B
C#

namespace Bit.Api.Models.Public.Request;
public class UpdateMemberIdsRequestModel
{
/// <summary>
/// The associated member ids that have access to this object.
/// </summary>
public IEnumerable<Guid> MemberIds { get; set; }
}