using System; using System.Collections.Generic; namespace Bit.Api.Models.Public.Request { public class UpdateGroupIdsRequestModel { /// /// The associated group ids that this object can access. /// public IEnumerable GroupIds { get; set; } } }