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

18 lines
542 B
C#
Raw Normal View History

2017-03-04 21:28:41 -05:00
using System;
namespace Bit.Core.Models.Data
{
2017-03-06 20:51:13 -05:00
public class OrganizationUserUserDetails
2017-03-04 21:28:41 -05:00
{
public Guid Id { get; set; }
2017-03-06 20:51:13 -05:00
public Guid OrganizationId { get; set; }
2017-03-04 21:28:41 -05:00
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; }
2017-05-16 00:11:21 -04:00
public string ExternalId { get; set; }
2017-03-04 21:28:41 -05:00
}
}