Move shared to core folder (#1404)

This commit is contained in:
Leendert de Borst
2025-12-11 09:18:56 +01:00
parent b05b431013
commit f42828ebd1
304 changed files with 1645 additions and 467 deletions

View File

@@ -0,0 +1,21 @@
export type RefreshToken = {
/**
* Gets or sets the unique identifier for the refresh token.
*/
id: string;
/**
* Gets or sets the device identifier associated with the refresh token.
*/
deviceIdentifier: string;
/**
* Gets or sets the expiration date of the refresh token.
*/
expireDate: string;
/**
* Gets or sets the creation date of the refresh token.
*/
createdAt: string;
}