add comment function

This commit is contained in:
tim-vogel
2022-08-23 19:19:21 -07:00
committed by Michael Shamoon
parent d1e8299010
commit 817882ff6f
20 changed files with 416 additions and 1 deletions
@@ -0,0 +1,8 @@
import { ObjectWithId } from './object-with-id'
import { CommentUser } from './user-type'
export interface PaperlessDocumentComment extends ObjectWithId {
created?: Date
comment?: string
user?: CommentUser
}