UNPKG

@tomei/product

Version:

NestJS package for product module

15 lines (14 loc) 408 B
import { Model } from 'sequelize-typescript'; import { StockProfile } from './stock-profile.entity'; export declare class StockProfileMaterial extends Model { MaterialId: string; ProfileId: string; Material: string; Type: string; IsMainYN: string; CreatedById: string; CreatedAt: Date; UpdatedById: string; UpdatedAt: Date; StockProfile: StockProfile; }