Files
server/src/Core/Models/Data/CollectionUserDetails.cs
2017-05-11 14:52:35 -04:00

16 lines
457 B
C#

using System;
namespace Bit.Core.Models.Data
{
public class CollectionUserDetails
{
public Guid OrganizationUserId { get; set; }
public bool AccessAll { get; set; }
public string Name { get; set; }
public string Email { get; set; }
public Enums.OrganizationUserStatusType Status { get; set; }
public Enums.OrganizationUserType Type { get; set; }
public bool ReadOnly { get; set; }
}
}