16 lines
229 B
TypeScript
16 lines
229 B
TypeScript
|
export interface CreateApiCommand {
|
||
|
title: string;
|
||
|
token: string;
|
||
|
expiry?: Date;
|
||
|
}
|
||
|
|
||
|
export interface UpdateApiCommand {
|
||
|
id: number;
|
||
|
title: string;
|
||
|
expiry?: Date;
|
||
|
}
|
||
|
|
||
|
export interface DeleteApiCommand {
|
||
|
id: number;
|
||
|
}
|