1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-05 21:18:13 -05:00

add max storage gb

This commit is contained in:
Kyle Spearrin 2018-03-29 14:06:23 -04:00
parent 07fb676ded
commit c5131f3b30

View File

@ -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; }