UNPKG

@tomei/rental

Version:
15 lines (14 loc) 383 B
import { Model } from 'sequelize-typescript'; import { RentalModel } from './rental.entity'; export declare class JointHirerModel extends Model { HirerId: string; RentalId: string; CustomerId: string; CustomerType: string; Status: string; CreatedById: string; CreatedAt: Date; UpdatedById: string; UpdatedAt: Date; RentalPrice: RentalModel; }