bitwarden-estensione-browser/libs/common/src/models/data/event.data.ts

9 lines
150 B
TypeScript

import { EventType } from "../../enums";
export class EventData {
type: EventType;
cipherId: string;
date: string;
organizationId: string;
}