paperless-ngx/src-ui/src/app/data/paperless-document-comment.ts

9 lines
196 B
TypeScript
Raw Normal View History

2022-08-07 12:41:30 -07:00
import { ObjectWithId } from './object-with-id'
import { User } from './user'
2022-08-07 12:41:30 -07:00
export interface PaperlessDocumentComment extends ObjectWithId {
created?: Date
comment?: string
user?: User
}