mirror of
https://github.com/bitwarden/server.git
synced 2025-07-05 01:52:49 -05:00
Move request/response models (#1754)
This commit is contained in:
13
src/Api/Models/Public/Request/UpdateMemberIdsRequestModel.cs
Normal file
13
src/Api/Models/Public/Request/UpdateMemberIdsRequestModel.cs
Normal file
@ -0,0 +1,13 @@
|
||||
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; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user