1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-05 18:12:48 -05:00
Files
bitwarden/src/Core/Models/Data/OrganizationUserInviteData.cs
2021-12-14 16:05:07 +01:00

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; }
}
}