mirror of
https://github.com/bitwarden/server.git
synced 2025-04-04 12:40:22 -05:00
25 lines
662 B
C#
25 lines
662 B
C#
using System;
|
|
using Bit.Core.Enums;
|
|
using Bit.Core.Models.Data;
|
|
using Bit.Core.Models.Table;
|
|
using Bit.Core.Utilities;
|
|
|
|
namespace Bit.Core.Context
|
|
{
|
|
public class CurrentContentOrganization
|
|
{
|
|
public CurrentContentOrganization() { }
|
|
|
|
public CurrentContentOrganization(OrganizationUser orgUser)
|
|
{
|
|
Id = orgUser.OrganizationId;
|
|
Type = orgUser.Type;
|
|
Permissions = CoreHelpers.LoadClassFromJsonData<Permissions>(orgUser.Permissions);
|
|
}
|
|
|
|
public Guid Id { get; set; }
|
|
public OrganizationUserType Type { get; set; }
|
|
public Permissions Permissions { get; set; }
|
|
}
|
|
}
|