Files
server/src/Core/Models/Data/CollectionUserDetails.cs

16 lines
457 B
C#
Raw Normal View History

2017-05-09 19:04:01 -04:00
using System;
namespace Bit.Core.Models.Data
{
2017-05-11 14:52:35 -04:00
public class CollectionUserDetails
2017-05-09 19:04:01 -04:00
{
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; }
2017-05-11 14:52:35 -04:00
public bool ReadOnly { get; set; }
2017-05-09 19:04:01 -04:00
}
}