6 lines
146 B
TypeScript
6 lines
146 B
TypeScript
import { MatchingModel } from './matching-model'
|
|
|
|
export interface Correspondent extends MatchingModel {
|
|
last_correspondence?: string // Date
|
|
}
|