import { CertType } from "./cert-type.enum"; export class Certificate { id?: number; certType?: CertType; contactInfoId?: number; images?: string; serial?: string; expiresAt?: number; };