UNPKG

@tomei/sso

Version:
11 lines (10 loc) 376 B
import { Model } from 'sequelize-typescript'; import User from './user.entity'; import { IUserPasswordHistoryAttr } from '../interfaces/user-password-history.interface'; export default class UserPasswordHistoryModel extends Model implements IUserPasswordHistoryAttr { HistoryId: string; UserId: number; PasswordHash: string; CreatedAt: Date; User: User; }