1
0
mirror of https://github.com/bitwarden/jslib synced 2026-01-07 02:53:13 +00:00
Files
jslib/src/models/request/policyRequest.ts
Kyle Spearrin f66de2207c policy apis
2020-01-15 11:24:00 -05:00

8 lines
144 B
TypeScript

import { PolicyType } from '../../enums/policyType';
export class PolicyRequest {
type: PolicyType;
enabled: boolean;
data: any;
}