ff-admin-server/src/command/management/webapi/webapiCommand.ts

20 lines
303 B
TypeScript
Raw Normal View History

2025-01-22 09:39:31 +01:00
export interface CreateWebapiCommand {
title: string;
token: string;
expiry?: Date;
}
2025-01-22 09:39:31 +01:00
export interface UpdateWebapiCommand {
id: number;
title: string;
expiry?: Date;
}
2025-01-22 11:57:19 +01:00
export interface UpdateLastUsageWebapiCommand {
id: number;
}
2025-01-22 09:39:31 +01:00
export interface DeleteWebapiCommand {
id: number;
}