1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-19 09:43:23 +00:00

org upgrade api

This commit is contained in:
Kyle Spearrin
2019-03-21 21:38:52 -04:00
parent aebd1b57fc
commit 593870e936
3 changed files with 16 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
import { PlanType } from '../../enums/planType';
export class OrganizationUpgradeRequest {
businessName: string;
planType: PlanType;
additionalSeats: number;
additionalStorageGb: number;
premiumAccessAddon: boolean;
}