2025-01-22 09:39:31 +01:00
|
|
|
export interface CreateWebapiCommand {
|
2025-01-21 11:37:28 +01:00
|
|
|
title: string;
|
|
|
|
token: string;
|
|
|
|
expiry?: Date;
|
|
|
|
}
|
|
|
|
|
2025-01-22 09:39:31 +01:00
|
|
|
export interface UpdateWebapiCommand {
|
2025-01-21 11:37:28 +01:00
|
|
|
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 {
|
2025-01-21 11:37:28 +01:00
|
|
|
id: number;
|
|
|
|
}
|