diff --git a/src/Core/Models/Api/Response/ProfileOrganizationResponseModel.cs b/src/Core/Models/Api/Response/ProfileOrganizationResponseModel.cs index 60d8bdf1d4..6b30e9eb68 100644 --- a/src/Core/Models/Api/Response/ProfileOrganizationResponseModel.cs +++ b/src/Core/Models/Api/Response/ProfileOrganizationResponseModel.cs @@ -13,6 +13,7 @@ namespace Bit.Core.Models.Api Key = organization.Key; Status = organization.Status; Type = organization.Type; + Enabled = organization.Enabled; } public string Id { get; set; } @@ -20,5 +21,6 @@ namespace Bit.Core.Models.Api public string Key { get; set; } public OrganizationUserStatusType Status { get; set; } public OrganizationUserType Type { get; set; } + public bool Enabled { get; set; } } } diff --git a/src/Core/Models/Data/OrganizationUserOrganizationDetails.cs b/src/Core/Models/Data/OrganizationUserOrganizationDetails.cs index 41f7c09e8f..ade2c5cdbf 100644 --- a/src/Core/Models/Data/OrganizationUserOrganizationDetails.cs +++ b/src/Core/Models/Data/OrganizationUserOrganizationDetails.cs @@ -10,5 +10,6 @@ namespace Bit.Core.Models.Data public string Key { get; set; } public Enums.OrganizationUserStatusType Status { get; set; } public Enums.OrganizationUserType Type { get; set; } + public bool Enabled { get; set; } } }