mirror of
https://github.com/bitwarden/server.git
synced 2025-07-05 18:12:48 -05:00
15 lines
432 B
C#
15 lines
432 B
C#
using System.Collections.Generic;
|
|
using Bit.Core.Enums;
|
|
|
|
namespace Bit.Core.Models.Data
|
|
{
|
|
public class OrganizationUserInviteData
|
|
{
|
|
public IEnumerable<string> Emails { get; set; }
|
|
public OrganizationUserType? Type { get; set; }
|
|
public bool AccessAll { get; set; }
|
|
public IEnumerable<SelectionReadOnly> Collections { get; set; }
|
|
public Permissions Permissions { get; set; }
|
|
}
|
|
}
|