mirror of
https://github.com/bitwarden/server.git
synced 2025-07-02 16:42:50 -05:00
10 lines
260 B
C#
10 lines
260 B
C#
namespace Bit.Api.AdminConsole.Public.Models.Request;
|
|
|
|
public class UpdateMemberIdsRequestModel
|
|
{
|
|
/// <summary>
|
|
/// The associated member ids that have access to this object.
|
|
/// </summary>
|
|
public IEnumerable<Guid> MemberIds { get; set; }
|
|
}
|