form update & token copy

This commit is contained in:
Julian Krauser 2025-01-22 11:55:48 +01:00
parent 7ded4a21bb
commit 4f13b70ac8
6 changed files with 148 additions and 23 deletions

View file

@ -11,16 +11,10 @@ export interface WebapiViewModel {
export interface CreateWebapiViewModel {
title: string;
token: string;
expiry?: Date;
}
export interface UpdateWebapiViewModel {
id: number;
title: string;
expiry?: Date;
}
export interface DeleteWebapiViewModel {
id: number;
}