using System.Collections.Generic; using Bit.Core.Enums; namespace Bit.Core.Models.Data { public class OrganizationUserInviteData { public IEnumerable Emails { get; set; } public OrganizationUserType? Type { get; set; } public bool AccessAll { get; set; } public IEnumerable Collections { get; set; } public Permissions Permissions { get; set; } } }