1
0
mirror of https://github.com/bitwarden/server synced 2025-12-12 06:13:43 +00:00
Files
server/src/Api/Models/Public/Request/UpdateMemberIdsRequestModel.cs
2021-12-14 16:05:07 +01:00

14 lines
326 B
C#

using System;
using System.Collections.Generic;
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; }
}
}