ff-admin-server/src/command/refreshCommand.ts

10 lines
161 B
TypeScript
Raw Normal View History

export interface CreateRefreshCommand {
userId: number;
isFromPwa?: boolean;
}
export interface DeleteRefreshCommand {
2024-08-23 14:42:47 +02:00
token: string;
userId: number;
}