11 lines
168 B
TypeScript
11 lines
168 B
TypeScript
|
export interface CreateResetCommand {
|
||
|
mail: string;
|
||
|
username: string;
|
||
|
secret: string;
|
||
|
}
|
||
|
|
||
|
export interface DeleteResetCommand {
|
||
|
token: string;
|
||
|
mail: string;
|
||
|
}
|