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

19 lines
597 B
C#
Raw Normal View History

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
{
public Guid? Id { get; set; }
2017-03-11 22:42:27 -05:00
public Guid OrganizationUserId { get; set; }
public Guid? OrganizationId { get; set; }
2017-04-27 09:19:30 -04:00
public Guid? CollectionId { get; set; }
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; }
}
}