UNPKG

@tomei/finance

Version:

NestJS package for finance module

13 lines 389 B
import { Model } from 'sequelize-typescript'; import PaymentModel from './payment.entity'; export default class PaymentItemModel extends Model { PaymentId: string; PayForObjectId: string; PayForObjectType: string; Currency: string; Amount: number; Name: string; Description: string; Payment: PaymentModel; } //# sourceMappingURL=payment-item.entity.d.ts.map