19 lines
303 B
TypeScript
19 lines
303 B
TypeScript
export interface CreateWebapiCommand {
|
|
title: string;
|
|
token: string;
|
|
expiry?: Date;
|
|
}
|
|
|
|
export interface UpdateWebapiCommand {
|
|
id: number;
|
|
title: string;
|
|
expiry?: Date;
|
|
}
|
|
|
|
export interface UpdateLastUsageWebapiCommand {
|
|
id: number;
|
|
}
|
|
|
|
export interface DeleteWebapiCommand {
|
|
id: number;
|
|
}
|