diff --git a/src/Core/Models/Api/Response/OrganizationResponseModel.cs b/src/Core/Models/Api/Response/OrganizationResponseModel.cs index b230a15c6..1c26401b2 100644 --- a/src/Core/Models/Api/Response/OrganizationResponseModel.cs +++ b/src/Core/Models/Api/Response/OrganizationResponseModel.cs @@ -35,6 +35,7 @@ namespace Bit.Core.Models.Api UseEvents = organization.UseEvents; UseTotp = organization.UseTotp; Use2fa = organization.Use2fa; + UsersGetPremium = organization.UsersGetPremium; } public string Id { get; set; } @@ -56,6 +57,7 @@ namespace Bit.Core.Models.Api public bool UseEvents { get; set; } public bool UseTotp { get; set; } public bool Use2fa { get; set; } + public bool UsersGetPremium { get; set; } } public class OrganizationBillingResponseModel : OrganizationResponseModel diff --git a/src/Core/Models/Api/Response/ProfileOrganizationResponseModel.cs b/src/Core/Models/Api/Response/ProfileOrganizationResponseModel.cs index 1c216f872..85528fd7e 100644 --- a/src/Core/Models/Api/Response/ProfileOrganizationResponseModel.cs +++ b/src/Core/Models/Api/Response/ProfileOrganizationResponseModel.cs @@ -15,6 +15,7 @@ namespace Bit.Core.Models.Api UseEvents = organization.UseEvents; UseTotp = organization.UseTotp; Use2fa = organization.Use2fa; + UsersGetPremium = organization.UsersGetPremium; Seats = organization.Seats; MaxCollections = organization.MaxCollections; MaxStorageGb = organization.MaxStorageGb; @@ -31,6 +32,7 @@ namespace Bit.Core.Models.Api public bool UseEvents { get; set; } public bool UseTotp { get; set; } public bool Use2fa { get; set; } + public bool UsersGetPremium { get; set; } public int Seats { get; set; } public int MaxCollections { get; set; } public short? MaxStorageGb { get; set; }