1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-10-09 05:57:40 +02:00
bitwarden-browser/libs/common/src/models/request/policy.request.ts

8 lines
138 B
TypeScript
Raw Normal View History

2021-12-16 13:36:21 +01:00
import { PolicyType } from "../../enums/policyType";
2020-01-15 17:24:00 +01:00
export class PolicyRequest {
2021-12-16 13:36:21 +01:00
type: PolicyType;
enabled: boolean;
data: any;
2020-01-15 17:24:00 +01:00
}