UNPKG

@arsendoman/book-publisher-store

Version:

A Nest.js package for book publishing and storing

11 lines (8 loc) 213 B
import { Prop, Schema } from '@nestjs/mongoose'; @Schema() export class BaseSchema { @Prop({ type: Date, default: Date.now }) createdAt: Date; @Prop({ type: Date, default: Date.now }) updatedAt: Date; }