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

16 lines
238 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 09:39:31 +01:00
export interface DeleteWebapiCommand {
id: number;
}