mirror of
https://github.com/bitwarden/server.git
synced 2025-04-06 21:48:12 -05:00
add max storage gb
This commit is contained in:
parent
07fb676ded
commit
c5131f3b30
@ -29,6 +29,7 @@ namespace Bit.Core.Models.Api
|
|||||||
PlanType = organization.PlanType;
|
PlanType = organization.PlanType;
|
||||||
Seats = organization.Seats;
|
Seats = organization.Seats;
|
||||||
MaxCollections = organization.MaxCollections;
|
MaxCollections = organization.MaxCollections;
|
||||||
|
MaxStorageGb = organization.MaxStorageGb;
|
||||||
UseGroups = organization.UseGroups;
|
UseGroups = organization.UseGroups;
|
||||||
UseDirectory = organization.UseDirectory;
|
UseDirectory = organization.UseDirectory;
|
||||||
UseEvents = organization.UseEvents;
|
UseEvents = organization.UseEvents;
|
||||||
@ -48,6 +49,7 @@ namespace Bit.Core.Models.Api
|
|||||||
public Enums.PlanType PlanType { get; set; }
|
public Enums.PlanType PlanType { get; set; }
|
||||||
public short? Seats { get; set; }
|
public short? Seats { get; set; }
|
||||||
public short? MaxCollections { get; set; }
|
public short? MaxCollections { get; set; }
|
||||||
|
public short? MaxStorageGb { get; set; }
|
||||||
public bool UseGroups { get; set; }
|
public bool UseGroups { get; set; }
|
||||||
public bool UseDirectory { get; set; }
|
public bool UseDirectory { get; set; }
|
||||||
public bool UseEvents { get; set; }
|
public bool UseEvents { get; set; }
|
||||||
|
Loading…
x
Reference in New Issue
Block a user