8ebac41318
* refactor(server): tsconfigs * chore: dummy commit * fix: start.sh * chore: restore original entry scripts
12 lines
240 B
TypeScript
12 lines
240 B
TypeScript
export class AuthUserDto {
|
|
id!: string;
|
|
email!: string;
|
|
isAdmin!: boolean;
|
|
isPublicUser?: boolean;
|
|
sharedLinkId?: string;
|
|
isAllowUpload?: boolean;
|
|
isAllowDownload?: boolean;
|
|
isShowExif?: boolean;
|
|
accessTokenId?: string;
|
|
}
|