import { Role } from '../../role/domain/role'; export class User { id!: number; name!: string; email!: string; password!: string; role!: Role; tenantId?: string; currentRefreshToken?: string; isActive!: boolean; createdAt!: Date; updatedAt!: Date; }