mirror of
https://github.com/bitwarden/browser
synced 2025-12-17 16:53:34 +00:00
8 lines
143 B
TypeScript
8 lines
143 B
TypeScript
import { EventType } from '../../enums/eventType';
|
|
|
|
export class EventRequest {
|
|
type: EventType;
|
|
cipherId: string;
|
|
date: string;
|
|
}
|