Files
Munawwirul Jamal 3eb9dde21d Dev cleaning (#106)
2025-10-08 00:03:36 +07:00

17 lines
290 B
TypeScript

import { type Base, genBase } from "./_base"
export interface PersonContact extends Base {
person_id: number
type_code: string
value: string
}
export function genPersonContact(): PersonContact {
return {
...genBase(),
person_id: 0,
type_code: '',
value: '',
}
}