UNPKG

zents-cli

Version:

ZenTS is a Node.js & TypeScript MVC-Framework for building rich web applications, released as free and open-source software under the MIT License. It is designed for building web applications with modern tools and design patterns.

17 lines (12 loc) 216 B
import { Column, Entity, PrimaryColumn } from 'typeorm' @Entity() export class Session { @PrimaryColumn() id: string @Column() data: string @Column() created_at: Date @Column() expired_at: Date }