1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-17 16:53:34 +00:00
Files
browser/src/models/request/eventRequest.ts
2019-07-09 13:08:36 -04:00

8 lines
143 B
TypeScript

import { EventType } from '../../enums/eventType';
export class EventRequest {
type: EventType;
cipherId: string;
date: string;
}