1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-22 21:45:15 -05:00
bitwarden/src/Core/Models/Data/OrganizationUserOrganizationDetails.cs
2017-04-11 15:57:13 -04:00

16 lines
462 B
C#

using System;
namespace Bit.Core.Models.Data
{
public class OrganizationUserOrganizationDetails
{
public Guid OrganizationId { get; set; }
public Guid? UserId { get; set; }
public string Name { get; set; }
public string Key { get; set; }
public Enums.OrganizationUserStatusType Status { get; set; }
public Enums.OrganizationUserType Type { get; set; }
public bool Enabled { get; set; }
}
}