From c5131f3b301ca6e01df6086f670f97f2abccacd5 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Thu, 29 Mar 2018 14:06:23 -0400 Subject: [PATCH] add max storage gb --- src/Core/Models/Api/Response/OrganizationResponseModel.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Core/Models/Api/Response/OrganizationResponseModel.cs b/src/Core/Models/Api/Response/OrganizationResponseModel.cs index 7a1bf65204..5d386288c7 100644 --- a/src/Core/Models/Api/Response/OrganizationResponseModel.cs +++ b/src/Core/Models/Api/Response/OrganizationResponseModel.cs @@ -29,6 +29,7 @@ namespace Bit.Core.Models.Api PlanType = organization.PlanType; Seats = organization.Seats; MaxCollections = organization.MaxCollections; + MaxStorageGb = organization.MaxStorageGb; UseGroups = organization.UseGroups; UseDirectory = organization.UseDirectory; UseEvents = organization.UseEvents; @@ -48,6 +49,7 @@ namespace Bit.Core.Models.Api public Enums.PlanType PlanType { get; set; } public short? Seats { get; set; } public short? MaxCollections { get; set; } + public short? MaxStorageGb { get; set; } public bool UseGroups { get; set; } public bool UseDirectory { get; set; } public bool UseEvents { get; set; }