ff-admin-server/src/command/user/api/apiCommand.ts

16 lines
229 B
TypeScript
Raw Normal View History

export interface CreateApiCommand {
title: string;
token: string;
expiry?: Date;
}
export interface UpdateApiCommand {
id: number;
title: string;
expiry?: Date;
}
export interface DeleteApiCommand {
id: number;
}