mirror of
https://github.com/bitwarden/server
synced 2025-12-16 08:13:33 +00: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