UNPKG

@tomei/finance

Version:

NestJS package for finance module

16 lines 457 B
import { Model } from 'sequelize-typescript'; import TagModel from './tag.entity'; export default class TagGroupModel extends Model { TagGroupId: string; TagGroupName: string; CreatedById: string; CreatedAt: Date; UpdatedById: string; UpdatedAt: Date; AccSystemRefId: string; PostedToAccSystemYN: string; PostedById: string; PostedDateTime: Date; Tags: TagModel[]; } //# sourceMappingURL=tag-group.entity.d.ts.map