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
|
|
|
|
}
|