const { Model } = (await import('sequelize')).default;
export abstract class BaseModel extends Model {
/**
* The date when the row was created.
*/
public declare readonly createdAt: Date;
/**
* The date when the row was last updated.
*/
public declare readonly updatedAt: Date;
}