2017-03-11 22:42:27 -05:00
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Bit.Core.Models.Data
|
|
|
|
|
|
{
|
2017-04-27 09:19:30 -04:00
|
|
|
|
public class CollectionUserUserDetails
|
2017-03-11 22:42:27 -05:00
|
|
|
|
{
|
2017-04-20 23:50:12 -04:00
|
|
|
|
public Guid? Id { get; set; }
|
2017-03-11 22:42:27 -05:00
|
|
|
|
public Guid OrganizationUserId { get; set; }
|
2017-04-27 09:19:30 -04:00
|
|
|
|
public Guid? CollectionId { get; set; }
|
2017-04-27 15:35:26 -04:00
|
|
|
|
public bool AccessAll { get; set; }
|
2017-04-03 12:27:02 -04:00
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
|
public string Email { get; set; }
|
|
|
|
|
|
public Enums.OrganizationUserStatusType Status { get; set; }
|
|
|
|
|
|
public Enums.OrganizationUserType Type { get; set; }
|
2017-03-11 22:42:27 -05:00
|
|
|
|
public bool ReadOnly { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|