import { ValidationCodeMethods, ValidationCodeTypes } from '../enums'; import { BaseModel } from './BaseModel'; export interface ValidationCode extends BaseModel { code: string; dateValidated: string | Date; establishmentId: string; companyId: string; isValidated: boolean; method: ValidationCodeMethods; sentTo: string; type: ValidationCodeTypes; }