using System;
using System.Collections.Generic;
namespace Bit.Api.Models.Public.Request
{
public class UpdateMemberIdsRequestModel
{
///
/// The associated member ids that have access to this object.
///
public IEnumerable MemberIds { get; set; }
}
}