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