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

13 lines
211 B
TypeScript
Raw Normal View History

2024-08-25 13:36:19 +02:00
export interface CreateInviteCommand {
mail: string;
username: string;
firstname: string;
lastname: string;
secret: string;
}
export interface DeleteInviteCommand {
token: string;
mail: string;
}