8 lines
150 B
TypeScript
8 lines
150 B
TypeScript
import { MatchingModel } from './matching-model';
|
|
|
|
export interface PaperlessCorrespondent extends MatchingModel {
|
|
|
|
last_correspondence?: Date
|
|
|
|
}
|