mirror of
https://github.com/bitwarden/server.git
synced 2025-07-01 08:02:49 -05:00
11 lines
277 B
C#
11 lines
277 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; }
|
|
}
|
|
}
|