mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-12-11 00:57:09 +01:00
12 lines
185 B
TypeScript
12 lines
185 B
TypeScript
|
|
import { ObjectWithId } from './object-with-id';
|
||
|
|
|
||
|
|
export class MatchingModel extends ObjectWithId {
|
||
|
|
|
||
|
|
name?: string
|
||
|
|
|
||
|
|
slug?: string
|
||
|
|
|
||
|
|
automatic_classification?: boolean
|
||
|
|
|
||
|
|
}
|