ff-operation-server/src/command/resetCommand.ts

11 lines
168 B
TypeScript
Raw Normal View History

export interface CreateResetCommand {
mail: string;
username: string;
secret: string;
}
export interface DeleteResetCommand {
token: string;
mail: string;
}