1
0
mirror of https://github.com/bitwarden/server synced 2025-12-17 00:33:23 +00:00
Files
server/src/Core/Models/Data/OrganizationUserUserDetails.cs
2017-05-16 00:11:21 -04:00

18 lines
542 B
C#

using System;
namespace Bit.Core.Models.Data
{
public class OrganizationUserUserDetails
{
public Guid Id { get; set; }
public Guid OrganizationId { get; set; }
public Guid? UserId { 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 AccessAll { get; set; }
public string ExternalId { get; set; }
}
}