1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-17 00:33:44 +00:00

policy apis

This commit is contained in:
Kyle Spearrin
2020-01-15 11:24:00 -05:00
parent 844699f1a4
commit f66de2207c
4 changed files with 63 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
import { PolicyType } from '../../enums/policyType';
export class PolicyRequest {
type: PolicyType;
enabled: boolean;
data: any;
}