1
0
mirror of https://github.com/bitwarden/directory-connector synced 2025-12-15 07:43:27 +00:00

models for entries

This commit is contained in:
Kyle Spearrin
2018-04-27 22:53:46 -04:00
parent e8351c3246
commit 39f760e135
5 changed files with 29 additions and 9 deletions

6
src/models/entry.ts Normal file
View File

@@ -0,0 +1,6 @@
export abstract class Entry {
referenceId: string;
externalId: string;
creationDate: Date;
revisonDate: Date;
}