9 lines
186 B
TypeScript
9 lines
186 B
TypeScript
export interface SessionEntity {
|
|
id: string;
|
|
userId: string;
|
|
tenantId: string;
|
|
refreshTokenHash: string;
|
|
expiresAt: string;
|
|
createdAt: string;
|
|
revokedAt?: string | null;
|
|
}
|