1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-04 17:42:49 -05:00

org user details apis

This commit is contained in:
Kyle Spearrin
2017-03-06 20:51:13 -05:00
parent 5ac2113cac
commit 7ca8629a13
15 changed files with 117 additions and 40 deletions

View File

@ -0,0 +1,13 @@
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; }
}
}