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

16 lines
462 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 OrganizationUserOrganizationDetails
2017-03-04 21:28:41 -05:00
{
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; }
2017-03-06 20:51:13 -05:00
public string Key { get; set; }
2017-03-04 21:28:41 -05:00
public Enums.OrganizationUserStatusType Status { get; set; }
2017-03-25 16:34:30 -04:00
public Enums.OrganizationUserType Type { get; set; }
2017-04-11 15:57:13 -04:00
public bool Enabled { get; set; }
2017-03-04 21:28:41 -05:00
}
}