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

9 lines
138 B
TypeScript
Raw Normal View History

export interface CreateRefreshCommand {
userId: number;
}
export interface DeleteRefreshCommand {
2024-08-23 12:42:47 +00:00
token: string;
userId: number;
}