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;
}
